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

20200805150316_create_ci_pipeline_artifact.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01995972011440ea5ee78bd587b208bc2bb7901b (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
32
# frozen_string_literal: true

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    unless table_exists?(:ci_pipeline_artifacts)
      create_table :ci_pipeline_artifacts do |t|
        t.timestamps_with_timezone
        t.bigint :pipeline_id, null: false, index: true
        t.bigint :project_id, null: false, index: true
        t.integer :size, null: false
        t.integer :file_store, null: false, limit: 2
        t.integer :file_type, null: false, limit: 2
        t.integer :file_format, null: false, limit: 2
        t.text :file

        t.index [:pipeline_id, :file_type], unique: true
      end
    end

    add_text_limit :ci_pipeline_artifacts, :file, 255
  end

  def down
    drop_table :ci_pipeline_artifacts
  end
end