Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200209131152_add_feature_filter_type_to_user_preferences.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c05b624c43825b6f0d341911d350c6e82a6f8829 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddFeatureFilterTypeToUserPreferences < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :user_preferences, :feature_filter_type, :bigint
  end
end