mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
13 lines
325 B
Ruby
13 lines
325 B
Ruby
class CreateRecipientSchedules < ActiveRecord::Migration[5.0]
|
|
def change
|
|
create_table :recipient_schedules do |t|
|
|
t.integer :recipient_id
|
|
t.integer :schedule_id
|
|
t.text :upcoming_question_ids
|
|
t.text :attempted_question_ids
|
|
t.timestamp :last_attempt_at
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|