Hugo Peixoto
9058ed98f7
Instead of sending all the payment details by email, we're now sending only a link to a page on this platform. This is to help reduce questions of whether the emails are from scammers or real.
12 lines
244 B
Ruby
12 lines
244 B
Ruby
class CreatePayments < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :payments, id: :uuid do |t|
|
|
t.references :member, type: :uuid, foreign_key: true, null: false
|
|
|
|
t.string :status
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|