Sha256: 7f1724ad3b98da2f2d4b52bd44341a0247e4470dbc7ef1eef4feb148d994a57e
Contents?: true
Size: 776 Bytes
Versions: 11
Compression:
Stored size: 776 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
11 entries across 11 versions & 1 rubygems