mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 17:28:18 +02:00
5 lines
143 B
Ruby
5 lines
143 B
Ruby
class AddInvoicesBuyerIdFk < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_foreign_key :invoices, :registrars, column: :buyer_id
|
|
end
|
|
end
|