Guest User

Untitled

a guest
Feb 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class AddInitialBalanceToAccount < ActiveRecord::Migration
  2. def self.up
  3. add_column :accounts, :initialBalance, :decimal, :scale => 2, :precision => 15, :default => 0.00
  4. end
  5.  
  6. def self.down
  7. remove_column :accounts, :initialBalance
  8. end
  9. end
Add Comment
Please, Sign In to add comment