summaryrefslogtreecommitdiff
path: root/db/migrate/20210305180331_create_ci_unit_tests.rb
blob: 970834a025bea513416870e11b11ff341c7415e0 (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
28
29
30
31
# frozen_string_literal: true

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    unless table_exists?(:ci_unit_tests)
      create_table :ci_unit_tests do |t|
        t.bigint :project_id, null: false
        t.text :key_hash, null: false
        t.text :name, null: false
        t.text :suite_name, 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_unit_tests, :key_hash, 64
    add_text_limit :ci_unit_tests, :name, 255
    add_text_limit :ci_unit_tests, :suite_name, 255
  end

  def down
    drop_table :ci_unit_tests
  end
end