From 311b0269b4eb9839fa63f80c8d7a58f32b8138a0 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 18 Nov 2021 13:16:36 +0000 Subject: Add latest changes from gitlab-org/gitlab@14-5-stable-ee --- .../20200805150316_create_ci_pipeline_artifact.rb | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 db/migrate/20200805150316_create_ci_pipeline_artifact.rb (limited to 'db/migrate/20200805150316_create_ci_pipeline_artifact.rb') 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 -- cgit v1.2.3