class AddPaymentConfigToAdmissionApplications < ActiveRecord::Migration[6.0]
  def change
    change_table :admission_applications, bulk: true do |t|
      t.boolean :payment, null: false, default: false
      t.string :payment_description, limit: 64
      t.decimal :payment_amount, precision: 20, scale: 2
    end
  end
end
