Files
Dena/db/migrate/20200211124707_remove_account_from_withdraws.rb
2026-08-13 19:50:53 +03:30

6 lines
129 B
Ruby

class RemoveAccountFromWithdraws < ActiveRecord::Migration[5.2]
def change
remove_column :withdraws, :account_id
end
end