10 lines
265 B
Ruby
10 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
|