Sha256: 11a4cd0152fd50a4f174594af61750394cc106d7bcf17e958d285a0fcb9d108d
Contents?: true
Size: 796 Bytes
Versions: 17
Compression:
Stored size: 796 Bytes
Contents
class CreateEcomCoreProjectWorkItemTemplates < ActiveRecord::Migration[6.0] def change create_table :ecom_core_project_work_item_templates do |t| t.references :task_template, null: false, index: { name: 'pwit_on_tt_indx' }, foreign_key: { to_table: :ecom_core_task_templates } t.references :work_product_template, null: false, index: { name: 'pwit_on_wpt_indx' }, foreign_key: { to_table: :ecom_core_work_product_templates } t.references :project_template, null: false, index: { name: 'pwit_on_pt_indx' }, foreign_key: { to_table: :ecom_core_project_templates } t.timestamps end end end
Version data entries
17 entries across 17 versions & 1 rubygems