mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
9 lines
234 B
Ruby
9 lines
234 B
Ruby
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
|