Sha256: 69f7542f4c7e753abfb7ab282a5e9aafe4e2a24ee2dbff90d1a4a468763b259b
Contents?: true
Size: 619 Bytes
Versions: 17
Compression:
Stored size: 619 Bytes
Contents
class CreateEcomCoreTaskTemplateInspectionChecklists < ActiveRecord::Migration[6.0] def change create_table :ecom_core_task_template_inspection_checklists do |t| t.references :task_template, null: false, index: { name: 'ttic_on_tt_indx' }, foreign_key: { to_table: :ecom_core_task_templates } t.references :inspection_checklist, null: false, index: { name: 'ttic_on_ic_indx' }, foreign_key: { to_table: :ecom_core_lookups } t.string :standard t.timestamps end end end
Version data entries
17 entries across 17 versions & 1 rubygems