Commit d607ea70 authored by Tiger Watson's avatar Tiger Watson

Merge branch '270409-experiment-cleanup-drop-feature-filter-type-column' into 'master'

Drop unused feature_filter_type experiment column

See merge request gitlab-org/gitlab!48221
parents a2600005 af4a70dd
---
title: Drop unused feature_filter_type experiment column
merge_request: 48221
author:
type: deprecated
# frozen_string_literal: true
class DropFeatureFilterTypeFromUserPreferences < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
with_lock_retries do
remove_column :user_preferences, :feature_filter_type
end
end
def down
with_lock_retries do
add_column :user_preferences, :feature_filter_type, :bigint
end
end
end
9684403a075bd1ddf3ae9290ad9a39ed24f4624d99498f8b8ed567588c15e082
\ No newline at end of file
......@@ -16907,7 +16907,6 @@ CREATE TABLE user_preferences (
setup_for_company boolean,
render_whitespace_in_code boolean,
tab_width smallint,
feature_filter_type bigint,
experience_level smallint,
view_diffs_file_by_file boolean DEFAULT false NOT NULL,
gitpod_enabled boolean DEFAULT false 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