mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
11 lines
278 B
Ruby
11 lines
278 B
Ruby
class CreateSurveyItems < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :survey_items do |t|
|
|
t.integer :measure_id, null: false
|
|
t.string :survey_item_id, null: false
|
|
t.string :prompt
|
|
end
|
|
|
|
add_foreign_key :survey_items, :measures
|
|
end
|
|
end
|