class AddInvoiceIdAndMemoAccSTripePayments < ActiveRecord::Migration[6.1]
  def change
    add_column :AccStripePayments, :InvoiceID, :bigint, after: :PaymentType
    add_column :AccStripePayments, :Memo, :text, after: :PaymentLast4
  end
end
