Sha256: 5e64829679b8d976d7cbebc1ea2b531b31e9faba199e3ab2ebddd432f1babc6f

Contents?: true

Size: 1.69 KB

Versions: 15

Compression:

Stored size: 1.69 KB

Contents

class CreateEcomCoreWorkProducts < ActiveRecord::Migration[6.0]
  def change
    create_table :ecom_core_work_products do |t|
      t.string :name, null: false
      t.string :description
      t.string :design_reference_no, unique: true
      t.json :dimension
      t.references :product_group,
                   null: true,
                   index: { name: 'wp_on_pg_indx' },
                   foreign_key: { to_table: :ecom_core_product_groups }
      t.references :work_product_template,
                   null: false,
                   index: { name: 'wpt_on_wp_indx' },
                   foreign_key: { to_table: :ecom_core_work_product_templates }
      t.references :project,
                   null: false,
                   index: { name: 'projects_on_wp_indx' },
                   foreign_key: { to_table: :ecom_core_projects }
      t.string :status, default: 'New'
      t.integer :percent_completed, null: false, default: 0
      t.string :remark
      t.references :approver,
                   null: true,
                   index: false,
                   foreign_key: { to_table: :ecom_core_users }
      t.references :supervisor,
                   null: true,
                   index: false,
                   foreign_key: { to_table: :ecom_core_users }
      t.references :quality_controller,
                   null: true,
                   index: false,
                   foreign_key: { to_table: :ecom_core_users }
      t.datetime :start_date
      t.datetime :completion_date
      t.boolean :tasks_generated, null: false, default: false

      t.timestamps
    end

    add_index :ecom_core_work_products, %i[design_reference_no project_id], unique: true, name: 'wp_on_drpi_indx'
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
ecom_core-1.2.31 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.30 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.29 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.28 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.27 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.26 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.24 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.23 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.22 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.21 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.20 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.19 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.18 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.17 db/migrate/20191202235434_create_ecom_core_work_products.rb
ecom_core-1.2.16 db/migrate/20191202235434_create_ecom_core_work_products.rb