mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00: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
|