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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
commit311b0269b4eb9839fa63f80c8d7a58f32b8138a0 (patch)
tree07e7870bca8aed6d61fdcc810731c50d2c40af47 /db/migrate/20200805150316_create_ci_pipeline_artifact.rb
parent27909cef6c4170ed9205afa7426b8d3de47cbb0c (diff)
Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42
Diffstat (limited to 'db/migrate/20200805150316_create_ci_pipeline_artifact.rb')
-rw-r--r--db/migrate/20200805150316_create_ci_pipeline_artifact.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/db/migrate/20200805150316_create_ci_pipeline_artifact.rb b/db/migrate/20200805150316_create_ci_pipeline_artifact.rb
deleted file mode 100644
index 01995972011..00000000000
--- a/db/migrate/20200805150316_create_ci_pipeline_artifact.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-# 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