blob: 45713fed53062cd8b76188dd0328f7e5d8bec155 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | class CreateComplianceCheckResources < ActiveRecord::Migration
  def change
    create_table :compliance_check_resources do |t|
      t.string :status
      t.string :name
      t.string :type
      t.string :reference
      t.hstore :metrics
      t.timestamps null: false
    end
  end
end
 |