mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
17 lines
419 B
Ruby
17 lines
419 B
Ruby
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
|