Sha256: 50bda898af76a00b6f143fafa16ec4a0543173873da7c02a3994a58043db86bf

Contents?: true

Size: 1.25 KB

Versions: 20

Compression:

Stored size: 1.25 KB

Contents

class CreateComeeCoreShipmentInstructionItems < ActiveRecord::Migration[7.1]
  def change
    create_table :comee_core_shipment_instruction_items do |t|
      t.references :shipment_instruction,
                   null: false,
                   index: {name: "si_on_ccsii_indx"},
                   foreign_key: {to_table: :comee_core_shipment_instructions}
      t.references :shipment_item,
                   null: false,
                   index: {name: "shi_on_ccsii_indx"},
                   foreign_key: {to_table: :comee_core_shipment_items}
      t.string :delivery_note_no, null: false
      t.string :pallet_no, null: false
      t.date :goods_issue_date, null: false
      t.float :length, null: false
      t.float :width, null: false
      t.float :height, null: false
      t.float :weight, null: false
      t.float :quantity, null: false
      t.references :unit,
                   null: false,
                   index: {name: "unit_on_ccsii_indx"},
                   foreign_key: {to_table: :comee_core_units}
      t.float :price, null: false
      t.references :pod,
                   null: true,
                   index: {name: "pod_on_ccsii_indx"},
                   foreign_key: {to_table: :comee_core_pods}

      t.timestamps
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
comee_core-0.2.6 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.2.5 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.2.4 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.2.3 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.2.2 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.2.1 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.2.0 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.99 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.98 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.97 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.96 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.95 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.94 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.93 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.92 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.91 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.90 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.89 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.88 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb
comee_core-0.1.87 db/migrate/20240104143246_create_comee_core_shipment_instruction_items.rb