journalduhacker/db/migrate/20140113153413_add_account_deletion.rb
joshua stein e12d91cd43 allow users to delete their own accounts
not much can actually be deleted, but it can be put into a deleted
state
2014-01-13 10:12:17 -06:00

6 lines
120 B
Ruby

class AddAccountDeletion < ActiveRecord::Migration
def change
add_column :users, :deleted_at, :datetime
end
end