docbrown/db/migrate/20180728201801_add_updated_timestamps_to_users.rb
Jess Lee 33f590ecc8 Jess/mentorship form updates (#653)
* add timestamps for mentroship form updates

* update placeholder text

* Add tests for mentee description change
2018-08-06 13:04:11 -04:00

6 lines
206 B
Ruby

class AddUpdatedTimestampsToUsers < ActiveRecord::Migration[5.1]
def change
add_column :users, :mentee_form_updated_at, :timestamp
add_column :users, :mentor_form_updated_at, :timestamp
end
end