scinote-web/db/migrate/20150716062110_create_checklist_items.rb
2017-06-30 10:23:28 +02:00

13 lines
339 B
Ruby

class CreateChecklistItems < ActiveRecord::Migration[4.2]
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