aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20170905122539_create_compliance_control_blocks.rb
blob: 54ed027ffe92692c261c7c634bb2e89cccd0de53 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateComplianceControlBlocks < ActiveRecord::Migration
  def change
    create_table :compliance_control_blocks do |t|
      t.string :name
      t.hstore :condition_attributes
      t.references :compliance_control_set, index: true, foreign_key: true

      t.timestamps null: false
    end
  end
end