20160518162011_add_column_into_payment_methods.rb 159 B

12345
  1. class AddColumnIntoPaymentMethods < ActiveRecord::Migration
  2. def change
  3. add_column :payment_methods, :isCash, :integer, null: false, default: 0
  4. end
  5. end