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

6 lines
185 B
Ruby

class AddRemoteToPaymentAddress < ActiveRecord::Migration[5.2]
def change
add_column :payment_addresses, :remote, :boolean, default: false, null: false, after: :address
end
end