summaryrefslogtreecommitdiff
path: root/db/migrate/20200604143628_create_project_security_settings.rb
blob: f972cb509a77cb3ffc1353a49108c8cf98811d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

class CreateProjectSecuritySettings < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      create_table :project_security_settings, id: false do |t|
        t.references :project, primary_key: true, index: false, foreign_key: { on_delete: :cascade }
        t.timestamps_with_timezone

        t.boolean :auto_fix_container_scanning, default: true, null: false
        t.boolean :auto_fix_dast, default: true, null: false
        t.boolean :auto_fix_dependency_scanning, default: true, null: false
        t.boolean :auto_fix_sast, default: true, null: false
      end
    end
  end

  def down
    with_lock_retries do
      drop_table :project_security_settings
    end
  end
end