Sha256: c5684b4b3ba2a5736521d6c9c7c000672f1a4ec59ed1135353886b18eff3a751

Contents?: true

Size: 1.06 KB

Versions: 16

Compression:

Stored size: 1.06 KB

Contents

class CreateEcomCoreUnitCosts < ActiveRecord::Migration[6.0]
  def change
    create_table :ecom_core_unit_costs do |t|
      t.references :resource_type,
                   null: false,
                   index: { name: 'uc_on_rt_indx' },
                   foreign_key: { to_table: :ecom_core_resource_types }
      t.float :quantity
      t.references :measurement_unit,
                   null: false,
                   index: { name: 'uc_on_mu_indx' },
                   foreign_key: { to_table: :ecom_core_measurement_units }
      t.float :price
      t.references :currency,
                   null: false,
                   index: { name: 'uc_on_currency_indx' },
                   foreign_key: { to_table: :ecom_core_currencies }
      t.float :utilization_factor, default: 1
      t.date :effective_date
      t.boolean :active, default: true
      t.references :set_by,
                   null: false,
                   index: { name: 'uc_on_user_indx' },
                   foreign_key: { to_table: :ecom_core_users }
      

      t.timestamps
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
ecom_core-1.3.14 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.13 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.12 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.11 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.10 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.9 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.8 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.7 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.6 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.5 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.4 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.3 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.2 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.1 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.3.0 db/migrate/20201121064916_create_ecom_core_unit_costs.rb
ecom_core-1.2.36 db/migrate/20201121064916_create_ecom_core_unit_costs.rb