20170527191257_add_cash_move_id_to_credit_payment.rb 176 B

12345
  1. class AddCashMoveIdToCreditPayment < ActiveRecord::Migration
  2. def change
  3. add_column :credit_payments, :cash_registers_move_id, :integer, index: true, null: true
  4. end
  5. end