scinote-web/db/migrate/20150716062110_create_checklist_items.rb
2016-02-12 16:52:43 +01:00

13 lines
334 B
Ruby

class CreateChecklistItems < ActiveRecord::Migration
def change
create_table :checklist_items do |t|
t.string :text, null: false
t.boolean :checked, null: false, default: false
t.integer :checklist_id, null: false
t.timestamps null: false
end
add_index :checklist_items, :checklist_id
end
end