osem-fcy/db/migrate/20160630094850_create_survey_replies.rb

14 lines
271 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateSurveyReplies < ActiveRecord::Migration[5.0]
def change
create_table :survey_replies do |t|
t.integer :survey_question_id
t.integer :user_id
t.text :text
t.timestamps null: false
end
end
end