1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00
Maybe/db/migrate/20240202230325_create_invite_codes.rb

10 lines
190 B
Ruby
Raw Permalink Normal View History

2024-02-02 17:49:28 -06:00
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