houdini/db/migrate/20210513211918_create_stripe_refunds.rb
Eric Schultz 2c791b920c Add stripe_refund.* publishing
Co-authored-by: Clarissa Lima Borges <clarissa@commitchange.com>
2021-07-14 11:23:22 -05:00

9 lines
227 B
Ruby

class CreateStripeRefunds < ActiveRecord::Migration[6.1]
def change
create_table :stripe_refunds, id: :string do |t|
t.references :payment, foreign_key: true, id: :string
t.timestamps
end
end
end