diaspora/db/migrate/20111109023618_create_account_deletions.rb
2011-12-08 16:32:19 -08:00

12 lines
242 B
Ruby

class CreateAccountDeletions < ActiveRecord::Migration
def self.up
create_table :account_deletions do |t|
t.string :diaspora_id
t.integer :person_id
end
end
def self.down
drop_table :account_deletions
end
end