Commit a5dba2d4 authored by Adam Hegyi's avatar Adam Hegyi

Merge branch 'drop-instance-statistics-visibility-private-column' into 'master'

Drop column instance_statistics_visibility_private

See merge request gitlab-org/gitlab!42969
parents d5c9f3a2 1e776728
---
title: Drop column instance_statistics_visibility_private
merge_request: 42969
author:
type: deprecated
# frozen_string_literal: true
class RemoveInstanceStatisticsVisibilityPrivateFromApplicationSettings < ActiveRecord::Migration[6.0]
DOWNTIME = false
def up
remove_column :application_settings, :instance_statistics_visibility_private
end
def down
add_column :application_settings, :instance_statistics_visibility_private, :boolean, default: false, null: false
end
end
c55f27f817afc60462e5dc43755a4ddd76f1399f5e461bab4b36bf5e5b26ce0a
\ No newline at end of file
...@@ -9146,7 +9146,6 @@ CREATE TABLE application_settings ( ...@@ -9146,7 +9146,6 @@ CREATE TABLE application_settings (
snowplow_enabled boolean DEFAULT false NOT NULL, snowplow_enabled boolean DEFAULT false NOT NULL,
snowplow_collector_hostname character varying, snowplow_collector_hostname character varying,
snowplow_cookie_domain character varying, snowplow_cookie_domain character varying,
instance_statistics_visibility_private boolean DEFAULT false NOT NULL,
web_ide_clientside_preview_enabled boolean DEFAULT false NOT NULL, web_ide_clientside_preview_enabled boolean DEFAULT false NOT NULL,
user_show_add_ssh_key_message boolean DEFAULT true NOT NULL, user_show_add_ssh_key_message boolean DEFAULT true NOT NULL,
custom_project_templates_group_id integer, custom_project_templates_group_id integer,
......
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