Commit e3d8019b authored by Reuben Pereira's avatar Reuben Pereira

Merge branch '335425-remove-column' into 'master'

Add migration to remove projects.container_registry_enabled

See merge request gitlab-org/gitlab!69998
parents 260f5fa8 748a2c25
...@@ -385,7 +385,6 @@ tables: ...@@ -385,7 +385,6 @@ tables:
- public_builds - public_builds
- last_repository_check_failed - last_repository_check_failed
- last_repository_check_at - last_repository_check_at
- container_registry_enabled
- only_allow_merge_if_pipeline_succeeds - only_allow_merge_if_pipeline_succeeds
- has_external_issue_tracker - has_external_issue_tracker
- repository_storage - repository_storage
......
# frozen_string_literal: true
class RemoveContainerRegistryEnabled < Gitlab::Database::Migration[1.0]
disable_ddl_transaction!
def up
with_lock_retries do
remove_column :projects, :container_registry_enabled
end
end
def down
with_lock_retries do
add_column :projects, :container_registry_enabled, :boolean # rubocop:disable Migration/AddColumnsToWideTables
end
end
end
abed3f9a6c188890d3dcd21f73a09347f8ccec0f6cc448220fadba5cbda17281
\ No newline at end of file
...@@ -18184,7 +18184,6 @@ CREATE TABLE projects ( ...@@ -18184,7 +18184,6 @@ CREATE TABLE projects (
public_builds boolean DEFAULT true NOT NULL, public_builds boolean DEFAULT true NOT NULL,
last_repository_check_failed boolean, last_repository_check_failed boolean,
last_repository_check_at timestamp without time zone, last_repository_check_at timestamp without time zone,
container_registry_enabled boolean,
only_allow_merge_if_pipeline_succeeds boolean DEFAULT false NOT NULL, only_allow_merge_if_pipeline_succeeds boolean DEFAULT false NOT NULL,
has_external_issue_tracker boolean, has_external_issue_tracker boolean,
repository_storage character varying DEFAULT 'default'::character varying NOT NULL, repository_storage character varying DEFAULT 'default'::character varying NOT NULL,
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment