summaryrefslogtreecommitdiff
path: root/db/migrate/20201012134230_create_ci_test_cases.rb
blob: fd1bcaf10931a9ee9e8094aae15a77c47ab0658b (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 CreateCiTestCases < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    unless table_exists?(:ci_test_cases)
      create_table :ci_test_cases do |t|
        t.bigint :project_id, null: false
        t.text :key_hash, null: false

        t.index [:project_id, :key_hash], unique: true
        # NOTE: FK for projects will be added on a separate migration as per guidelines
      end
    end

    add_text_limit :ci_test_cases, :key_hash, 64
  end

  def down
    drop_table :ci_test_cases
  end
end