1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20220914145334_remove_payment_state_from_orders.rb

6 lines
131 B
Ruby
Raw Normal View History

2022-09-14 19:54:24 +02:00
class RemovePaymentStateFromOrders < ActiveRecord::Migration[5.2]
def change
remove_column :orders, :payment_state
end
end