6 lines
162 B
Ruby
6 lines
162 B
Ruby
class AddEmployerToSubscription < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_reference :subscriptions, :employer, null: false, foreign_key: true
|
|
end
|
|
end
|