mirror of
https://github.com/internetee/registry.git
synced 2025-06-05 12:17:30 +02:00
6 lines
181 B
Ruby
6 lines
181 B
Ruby
class AddConstraintsPartIi < ActiveRecord::Migration[6.0]
|
|
def change
|
|
change_column_null :white_ips, :registrar_id, false
|
|
add_foreign_key :white_ips, :registrars
|
|
end
|
|
end
|