mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
12 lines
334 B
Ruby
12 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
|