aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20170905130413_create_compliance_check_sets.rb
blob: 21055a3f2c4abe72234f4125e4425b899147cd26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class CreateComplianceCheckSets < ActiveRecord::Migration
  def change
    create_table :compliance_check_sets do |t|
      t.references :referential, index: true, foreign_key: true
      t.references :compliance_control_set, index: true, foreign_key: true
      t.references :workbench, index: true, foreign_key: true
      t.string :creator
      t.string :status
      t.references :parent, polymorphic: true, index: true

      t.timestamps null: false
    end
  end
end