* add timestamps for mentroship form updates * update placeholder text * Add tests for mentee description change
6 lines
206 B
Ruby
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
|