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

21 lines
430 B
Ruby

# frozen_string_literal:true
class CreateWallets < ActiveRecord::Migration[4.2]
def up
create_table :wallets do |t|
t.belongs_to :user, index: true, foreign_key: true
t.integer :amount, default: 0
t.timestamps null: false
end
User.includes(:invoicing_profile).each do |u|
Wallet.create(invoicing_profile: u.invoicing_profile.id)
end
end
def down
drop_table :wallets
end
end