mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
35 lines
907 B
Ruby
35 lines
907 B
Ruby
# frozen_string_literal:true
|
|
|
|
# Wallet data must be attached to InvoicingProfile because we must keep these data after the user has delete his account
|
|
class MigrateWalletToInvoicingProfile < ActiveRecord::Migration[4.2]
|
|
def up
|
|
Wallet.all.each do |w|
|
|
user = User.find(w.user_id)
|
|
w.update(
|
|
invoicing_profile_id: user.invoicing_profile.id
|
|
)
|
|
end
|
|
WalletTransaction.all.each do |wt|
|
|
user = User.find(wt.user_id)
|
|
wt.update(
|
|
invoicing_profile_id: user.invoicing_profile.id
|
|
)
|
|
end
|
|
end
|
|
|
|
def down
|
|
Wallet.all.each do |w|
|
|
invoicing_profile = User.find(w.invoicing_profile_id)
|
|
w.update(
|
|
user_id: invoicing_profile.user_id
|
|
)
|
|
end
|
|
WalletTransaction.all.each do |wt|
|
|
invoicing_profile = User.find(wt.invoicing_profile_id)
|
|
wt.update(
|
|
user_id: invoicing_profile.user_id
|
|
)
|
|
end
|
|
end
|
|
end
|