b05ac2ab64
Do not remove the user from the database. Mark as deleted instead.
5 lines
120 B
Ruby
5 lines
120 B
Ruby
class AddDeletedAtToUser < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :deleted_at, :datetime
|
|
end
|
|
end
|