sqm-dashboards/db/migrate/20170317150205_add_counters_to_recipient.rb
2017-03-17 13:10:13 -04:00

6 lines
216 B
Ruby

class AddCountersToRecipient < ActiveRecord::Migration[5.0]
def change
add_column :recipients, :attempts_count, :integer, default: 0
add_column :recipients, :responses_count, :integer, default: 0
end
end