sqm-dashboards/db/migrate/20170307152229_create_recipient_schedules.rb
2017-03-07 12:40:09 -05:00

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