Sha256: 94e9b737edc0ed0035ef63330a80144fac498330e06f7f08cdea59e68a9bca91
Contents?: true
Size: 863 Bytes
Versions: 34
Compression:
Stored size: 863 Bytes
Contents
class CreateComeeCoreInvoices < ActiveRecord::Migration[7.0] def change create_table :comee_core_invoices do |t| t.string :invoice_no, null: false t.references :sales_order, null: false, index: {name: "co_on_cci_indx"}, foreign_key: {to_table: :comee_core_sales_orders} t.references :pod, null: false, index: {name: "pod_on_cci_indx"}, foreign_key: {to_table: :comee_core_pods} t.date :date_issued t.date :due_date t.float :total_price t.string :payment_term t.integer :notifications_sent t.integer :status, null: false, default: 0 t.integer :payment_status, null: false, default: 0 t.timestamps end add_index :comee_core_invoices, :invoice_no, unique: true end end
Version data entries
34 entries across 34 versions & 1 rubygems