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.
sqm-dashboards/db/migrate/20170307152229_create_recip...

14 lines
325 B

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