class CreateShippingBoxes < ActiveRecord::Migration[6.0]
  def change
    create_table :shipping_boxes do |t|
      t.string :part_no
      t.string :part_desc
      t.string :lot_no
      t.integer :qty
      t.string :box_id
      t.string :po
      t.string :supplier

      t.integer :status
      t.datetime :shipping_at
      t.timestamps
    end
  end
end
