Skip to content
代码片段 群组 项目
提交 8a26bedf 编辑于 作者: Mayra Cabrera's avatar Mayra Cabrera
浏览文件

Merge branch 'morefice/drop-project-build-coverage-regex' into 'master'

Drop Project#build_coverage_regex

See merge request gitlab-org/gitlab!95908
No related branches found
No related tags found
无相关合并请求
# frozen_string_literal: true
class DropBuildCoverageRegexFromProject < Gitlab::Database::Migration[2.0]
enable_lock_retries!
def up
remove_column :projects, :build_coverage_regex
end
def down
add_column :projects, :build_coverage_regex, :string # rubocop: disable Migration/AddColumnsToWideTables
end
end
696550615046e26d4012d8b5a5fb741d85c23d4d0d08a4a781da0123c0543de1
\ No newline at end of file
...@@ -20015,7 +20015,6 @@ CREATE TABLE projects ( ...@@ -20015,7 +20015,6 @@ CREATE TABLE projects (
mirror_user_id integer, mirror_user_id integer,
shared_runners_enabled boolean DEFAULT true NOT NULL, shared_runners_enabled boolean DEFAULT true NOT NULL,
runners_token character varying, runners_token character varying,
build_coverage_regex character varying,
build_allow_git_fetch boolean DEFAULT true NOT NULL, build_allow_git_fetch boolean DEFAULT true NOT NULL,
build_timeout integer DEFAULT 3600 NOT NULL, build_timeout integer DEFAULT 3600 NOT NULL,
mirror_trigger_builds boolean DEFAULT false NOT NULL, mirror_trigger_builds boolean DEFAULT false NOT NULL,
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册