Sha256: 7589b44a6aa12a1ca8e03ba46adad7e39a1090dc401afe774ec9c037b447723d

Contents?: true

Size: 1.07 KB

Versions: 13

Compression:

Stored size: 1.07 KB

Contents

class CreateComeeCoreQuotationRequestItems < ActiveRecord::Migration[7.1]
  def change
    create_table :comee_core_quotation_request_items do |t|
      t.references :product,
                   null: false,
                   index: {name: "product_on_ccrfqi_indx"},
                   foreign_key: {to_table: :comee_core_products}
      t.references :quotation_request,
                   null: false,
                   index: {name: "rfq_on_ccrfqi_indx"},
                   foreign_key: {to_table: :comee_core_quotation_requests}
      t.string :customer_item_no
      t.float :quantity, null: false
      t.float :price, null: false, default: 0
      t.float :discount, null: false, default: 0
      t.date :expected_delivery_date, null: false
      t.boolean :canceled, null: false, default: false
      t.references :unit,
                   null: false,
                   index: {name: "unit_on_ccrfqi_indx"},
                   foreign_key: {to_table: :comee_core_units}
      t.date :valid_from, null: true
      t.date :valid_to, null: true

      t.timestamps
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
comee_core-0.1.65 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.64 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.63 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.62 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.61 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.60 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.59 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.58 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.57 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.56 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.55 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.54 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb
comee_core-0.1.53 db/migrate/20231121132709_create_comee_core_quotation_request_items.rb