mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
11 lines
222 B
Ruby
11 lines
222 B
Ruby
class CreateQuestionLists < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :question_lists do |t|
|
|
t.string :name
|
|
t.text :description
|
|
t.text :question_ids
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|