Sha256: 356d0ff94cd68e37659f0620cccee713031f41a6556ccdd18e227b6221ebc524

Contents?: true

Size: 909 Bytes

Versions: 9

Compression:

Stored size: 909 Bytes

Contents

class CreateLogisticsCoreFreightTonStorageRates < ActiveRecord::Migration[5.0]
  def change
    create_table :logistics_core_freight_ton_storage_rates do |t|
      t.references :content_type, index: { name: 'ftsr_on_ct_indx' }
      t.references :transaction_type, index: { name: 'ftsr_on_tt_indx' }
      t.references :warehouse_rate_period, index: { name: 'ftsr_on_wrp_indx' }
      t.date :effective_date
      t.float :rate

      t.timestamps
    end

    add_foreign_key :logistics_core_freight_ton_storage_rates, :logistics_core_lookups, :column => :content_type_id
    add_foreign_key :logistics_core_freight_ton_storage_rates, :logistics_core_lookups, :column => :transaction_type_id,
                    :name => 'fk_fstr_on_tt'
    add_foreign_key :logistics_core_freight_ton_storage_rates, :logistics_core_warehouse_rate_periods,
                    :column => :warehouse_rate_period_id
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

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