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.
18 lines
419 B
18 lines
419 B
class CreateAttempts < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :attempts do |t|
|
|
t.integer :recipient_id
|
|
t.integer :schedule_id
|
|
t.integer :recipient_schedule_id
|
|
t.timestamp :sent_at
|
|
t.timestamp :responded_at
|
|
t.integer :question_id
|
|
t.integer :translation_id
|
|
t.integer :answer_index
|
|
t.integer :open_response_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|