Sha256: 4bdde9f1ebfaf4734b4ef4ee81818baa589c30cdf0b7f8487fcdba3ac1667b26

Contents?: true

Size: 1.43 KB

Versions: 150

Compression:

Stored size: 1.43 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.references :delivery_note,
                   null: true,
                   index: {name: "dn_on_ccsii_indx"},
                   foreign_key: {to_table: :comee_core_delivery_notes}

      t.timestamps
    end
  end
end

Version data entries

150 entries across 150 versions & 1 rubygems

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