summaryrefslogtreecommitdiff
path: root/db/migrate/20230417145900_add_visibility_pipeline_id_type_to_user_preferences.rb
blob: 2c58a40f244f8bfe41dc2daa21f46f4b8b8f262a (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddVisibilityPipelineIdTypeToUserPreferences < Gitlab::Database::Migration[2.1]
  def change
    add_column :user_preferences, :visibility_pipeline_id_type, :integer, default: 0, limit: 2, null: false
  end
end