Sha256: 6953c1a1e96a99a97b90729f9013483ccc61d80c39525eeaa7129a548437c4fb

Contents?: true

Size: 554 Bytes

Versions: 182

Compression:

Stored size: 554 Bytes

Contents

class CreateComeeCoreShipmentInstructions < ActiveRecord::Migration[7.1]
  def change
    create_table :comee_core_shipment_instructions do |t|
      t.string :reference_no, null: false
      t.references :client,
                   null: false,
                   index: {name: "client_on_ccsi_indx"},
                   foreign_key: {to_table: :comee_core_clients}
      t.integer :status, null: false, default: 0
      t.string :remark

      t.timestamps
    end
    add_index :comee_core_shipment_instructions, :reference_no, unique: true
  end
end

Version data entries

182 entries across 182 versions & 1 rubygems

Version Path
comee_core-0.3.62 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.61 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.60 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.59 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.58 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.57 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.56 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.55 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.54 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.53 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.51 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.50 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.49 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.48 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.47 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.46 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.45 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.44 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.43 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb
comee_core-0.3.42 db/migrate/20240104131607_create_comee_core_shipment_instructions.rb