Commit 1e776728 authored by Magdalena Frankiewicz's avatar Magdalena Frankiewicz Committed by Adam Hegyi

Drop column instance_statistics_visibility_private

After it has been ignored and is no longer needed
parent 77c03c90
---
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 (
snowplow_enabled boolean DEFAULT false NOT NULL,
snowplow_collector_hostname 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,
user_show_add_ssh_key_message boolean DEFAULT true NOT NULL,
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