aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20170905101656_create_compliance_control_sets.rb
blob: d074267cdea4967e9b186b43a608dd55a409c9ff (plain)
1
2
3
4
5
6
7
8
9
10
class CreateComplianceControlSets < ActiveRecord::Migration
  def change
    create_table :compliance_control_sets do |t|
      t.string :name
      t.references :organisation, index: true, foreign_key: true

      t.timestamps null: false
    end
  end
end