2018-02-09 19:07:10 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2016-06-28 18:16:06 +03:00
|
|
|
class CreateSurveySubmissions < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
create_table :survey_submissions do |t|
|
|
|
|
|
t.integer :user_id
|
|
|
|
|
t.integer :survey_id
|
|
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|