mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-21 15:54:22 +01:00
7 lines
253 B
Ruby
7 lines
253 B
Ruby
class AddInvoicingProfileToWallet < ActiveRecord::Migration
|
|
def change
|
|
add_reference :wallets, :invoicing_profile, index: true, foreign_key: true
|
|
add_reference :wallet_transactions, :invoicing_profile, index: true, foreign_key: true
|
|
end
|
|
end
|