Sha256: 7e6a40e1f5486c0f28045adcdd40a82c3d2383a736751e787b70d8c66c367c4a
Contents?: true
Size: 809 Bytes
Versions: 81
Compression:
Stored size: 809 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.date :date_issued, null: false t.string :ship_name t.date :delivery_date t.string :voyage_no t.float :additional_charges t.float :total_price t.string :payment_term, null: false 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
81 entries across 81 versions & 1 rubygems