Sha256: f9fa060660a1f033886cf35b11489b174e82e37f1210f0ba877938f5d52ff4df

Contents?: true

Size: 742 Bytes

Versions: 9

Compression:

Stored size: 742 Bytes

Contents

class CreateLogisticsCoreBreakBulkRates < ActiveRecord::Migration[5.0]
  def change
    create_table :logistics_core_break_bulk_rates do |t|
      t.references :transaction_type, index: { name: 'bbr_on_tt_indx' }
      t.references :chargeable_service_unit_of_charge, index: { name: 'bbr_on_csuoc_indx' }
      t.float :low
      t.float :medium
      t.float :high
      t.date :effective_date
      t.float :margin

      t.timestamps
    end

    add_foreign_key :logistics_core_break_bulk_rates, :logistics_core_lookups, :column => :transaction_type_id
    add_foreign_key :logistics_core_break_bulk_rates, :logistics_core_chargeable_service_unit_of_charges,
                    :column => :chargeable_service_unit_of_charge_id
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

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