Sha256: 890e4d9f52975746e780f17f3d9a0fbc70fe87ffe5cbc2438a536177d95a00fe
Contents?: true
Size: 620 Bytes
Versions: 110
Compression:
Stored size: 620 Bytes
Contents
class CreateComeeCoreSupplierPayments < ActiveRecord::Migration[7.1] def change create_table :comee_core_supplier_payments do |t| t.references :payment_order, null: false, index: {name: "po_on_ccsp_indx"}, foreign_key: {to_table: :comee_core_payment_orders} t.references :supplier_invoice, null: false, index: {name: "si_on_ccsp_indx"}, foreign_key: {to_table: :comee_core_supplier_invoices} t.float :amount, null: false t.string :remark t.timestamps end end end
Version data entries
110 entries across 110 versions & 1 rubygems