mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
7 lines
181 B
Ruby
7 lines
181 B
Ruby
class AddUuidToSchools < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :schools, :permission_key, :string
|
|
add_index :schools, :permission_key, unique: true
|
|
end
|
|
end
|