summaryrefslogtreecommitdiff
path: root/rvh/db/migrate/20200315183805_create_items.rb
blob: 98242b194314d77dbc411b13c77f6555fb900d93 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateItems < ActiveRecord::Migration[6.0]
  def change
    create_table :items do |t|
      t.string :sku, null: false
      t.text :description
      t.decimal :unit_cost, null: false

      t.timestamps
    end
  end
end