class AddColumnIntoPaymentMethods < ActiveRecord::Migration def change add_column :payment_methods, :isCash, :integer, null: false, default: 0 end end