mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 21:59:38 +02:00
9 lines
190 B
Ruby
9 lines
190 B
Ruby
class CreateInviteCodes < ActiveRecord::Migration[7.2]
|
|
def change
|
|
create_table :invite_codes, id: :uuid do |t|
|
|
t.string :token, null: false
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|