6 lines
129 B
Ruby
6 lines
129 B
Ruby
class RemoveAccountFromWithdraws < ActiveRecord::Migration[5.2]
|
|
def change
|
|
remove_column :withdraws, :account_id
|
|
end
|
|
end
|