You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sqm-dashboards/db/migrate/20210916143538_create_surve...

14 lines
353 B

class CreateSurveyResponses < ActiveRecord::Migration[5.0]
def change
create_table :survey_responses do |t|
t.string :academic_year
t.integer :likert_score
t.integer :school_id
t.integer :survey_item_id
end
add_foreign_key :survey_responses, :schools
add_foreign_key :survey_responses, :survey_items
end
end