12 lines
246 B
Ruby
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
|