parsley/db/migrate/20180827215102_create_task_items.rb
2018-08-27 17:46:33 -05:00

12 lines
242 B
Ruby

class CreateTaskItems < ActiveRecord::Migration[5.2]
def change
create_table :task_items do |t|
t.integer :task_list_id, index: true, null: false
t.string :name
t.string :quantity
t.timestamps
end
end
end