mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
10 lines
190 B
Ruby
10 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
|