mastodon/db/migrate/20200908193330_create_accou...

11 lines
265 B
Ruby

# frozen_string_literal: true
class CreateAccountDeletionRequests < ActiveRecord::Migration[5.2]
def change
create_table :account_deletion_requests do |t|
t.references :account, foreign_key: { on_delete: :cascade }
t.timestamps
end
end
end