From d9ab72d6080f594d0b3cae15f14b3ef2c6c638cb Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Wed, 20 Oct 2021 08:43:02 +0000 Subject: Add latest changes from gitlab-org/gitlab@14-4-stable-ee --- .../20191112090226_add_artifacts_to_ci_build_need.rb | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 db/migrate/20191112090226_add_artifacts_to_ci_build_need.rb (limited to 'db/migrate/20191112090226_add_artifacts_to_ci_build_need.rb') diff --git a/db/migrate/20191112090226_add_artifacts_to_ci_build_need.rb b/db/migrate/20191112090226_add_artifacts_to_ci_build_need.rb deleted file mode 100644 index b868e0b44a8..00000000000 --- a/db/migrate/20191112090226_add_artifacts_to_ci_build_need.rb +++ /dev/null @@ -1,20 +0,0 @@ -# frozen_string_literal: true - -class AddArtifactsToCiBuildNeed < ActiveRecord::Migration[5.2] - include Gitlab::Database::MigrationHelpers - - DOWNTIME = false - - disable_ddl_transaction! - - def up - add_column_with_default(:ci_build_needs, :artifacts, # rubocop:disable Migration/AddColumnWithDefault - :boolean, - default: true, - allow_null: false) - end - - def down - remove_column(:ci_build_needs, :artifacts) - end -end -- cgit v1.2.1