diaspora/db/migrate/20111109023618_create_account_deletions.rb

12 lines
246 B
Ruby

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