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
|