mirror of
https://github.com/internetee/registry.git
synced 2025-08-05 01:11:43 +02:00
5 lines
138 B
Ruby
5 lines
138 B
Ruby
class AddInvoicesBuyerIdFk < ActiveRecord::Migration
|
|
def change
|
|
add_foreign_key :invoices, :registrars, column: :buyer_id
|
|
end
|
|
end
|