Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20230601085810_create_project_compliance_standards_adherence.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eee443332fdec58b632fead55ce4145e0368af18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class CreateProjectComplianceStandardsAdherence < Gitlab::Database::Migration[2.1]
  def change
    create_table :project_compliance_standards_adherence do |t|
      t.timestamps_with_timezone null: false
      t.bigint :project_id, null: false
      t.bigint :namespace_id, null: false
      t.integer :status, null: false, limit: 2
      t.integer :check_name, null: false, limit: 2
      t.integer :standard, null: false, limit: 2

      t.index :namespace_id
      t.index :project_id
      t.index [:project_id, :check_name, :standard], unique: true,
        name: 'u_project_compliance_standards_adherence_for_reporting'
    end
  end
end