2c791b920c
Co-authored-by: Clarissa Lima Borges <clarissa@commitchange.com>
9 lines
227 B
Ruby
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
|