Sha256: 3a073dc5211e3672c4c51f4312eb46a937225e358d671ff887d77cb81839ed0e

Contents?: true

Size: 1.17 KB

Versions: 9

Compression:

Stored size: 1.17 KB

Contents

class CreateLogisticsCoreContractBreakBulkUnitRates < ActiveRecord::Migration[5.0]
  def change
    create_table :logistics_core_contract_break_bulk_unit_rates do |t|
    	t.references :chargeable_service_unit_of_charge, index: { name: 'cabr_on_csuoc3_indx' }
      t.references :transaction_type, index: { name: 'cabr_on_tt3_indx' }
      t.references  :break_bulk_unit, index: { name: 'cabr_on_bbu3_indx' }
      t.references :client_contract, index: { name: 'cabr_on_cc3_indx' }
      t.boolean :in_contract
      t.float :rate

      t.timestamps
    end

    add_foreign_key :logistics_core_contract_break_bulk_unit_rates, :logistics_core_chargeable_service_unit_of_charges,
                    :column => :chargeable_service_unit_of_charge_id
    add_foreign_key :logistics_core_contract_break_bulk_unit_rates, :logistics_core_lookups, :column => :transaction_type_id
    add_foreign_key :logistics_core_contract_break_bulk_unit_rates, :logistics_core_client_contracts,
                    :column => :client_contract_id
    add_foreign_key :logistics_core_contract_break_bulk_unit_rates, :logistics_core_lookups, :column => :break_bulk_unit_id,
    								:name => 'fk_cabr_on_bbu'
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
logistics_core-21.11.2 db/migrate/20170111122934_create_logistics_core_contract_break_bulk_unit_rates.rb
logistics_core-21.11.1 db/migrate/20170111122934_create_logistics_core_contract_break_bulk_unit_rates.rb
logistics_core-21.08.1 db/migrate/20170111122934_create_logistics_core_contract_break_bulk_unit_rates.rb
logistics_core-21.03.1 db/migrate/20170111122934_create_logistics_core_contract_break_bulk_unit_rates.rb
logistics_core-20.10.3 db/migrate/20170111122934_create_logistics_core_contract_break_bulk_unit_rates.rb
logistics_core-20.10.2 db/migrate/20170111122934_create_logistics_core_contract_break_bulk_unit_rates.rb
logistics_core-20.10.1 db/migrate/20170111122934_create_logistics_core_contract_break_bulk_unit_rates.rb
logistics_core-20.9.1 db/migrate/20170111122934_create_logistics_core_contract_break_bulk_unit_rates.rb
logistics_core-20.8.1 db/migrate/20170111122934_create_logistics_core_contract_break_bulk_unit_rates.rb