6 lines
160 B
Ruby
6 lines
160 B
Ruby
|
|
class UpdateEmployerToBelongToBroker < ActiveRecord::Migration[7.2]
|
||
|
|
def change
|
||
|
|
add_reference :employers, :broker, null: true, foreign_key: true
|
||
|
|
end
|
||
|
|
end
|