mirror of
https://github.com/internetee/registry.git
synced 2025-07-29 22:16:19 +02:00
5 lines
151 B
Ruby
5 lines
151 B
Ruby
class AddUserRegistrarIdFk < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_foreign_key :users, :registrars, name: 'user_registrar_id_fk'
|
|
end
|
|
end
|