blob: c461e656b4e678bc75a87c863fb988b8467ed723 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | class CreateComplianceCheckBlocks < ActiveRecord::Migration
  def change
    create_table :compliance_check_blocks do |t|
      t.string :name
      t.hstore :condition_attributes
      t.references :compliance_check_set, index: true, foreign_key: true
      t.timestamps null: false
    end
  end
end
 |