Files
fizzy/db/migrate/20240919191155_add_join_code_to_accounts.rb
T
2024-09-24 14:30:22 -04:00

8 lines
175 B
Ruby

class AddJoinCodeToAccounts < ActiveRecord::Migration[8.0]
def change
change_table :accounts do |t|
t.string :join_code, index: { unique: true }
end
end
end