mirror of
https://github.com/internetee/registry.git
synced 2025-07-30 14:36:22 +02:00
5 lines
162 B
Ruby
5 lines
162 B
Ruby
class AddMessagesRegistrarIdFk < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_foreign_key :messages, :registrars, name: 'messages_registrar_id_fk'
|
|
end
|
|
end
|