debian-mirror-gitlab/db/migrate/20190116234221_add_sorting_fields_to_user_preference.rb

24 lines
721 B
Ruby
Raw Normal View History

2019-03-02 22:35:43 +05:30
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class AddSortingFieldsToUserPreference < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/PreventStrings
2019-03-02 22:35:43 +05:30
def up
2020-05-24 23:13:21 +05:30
add_column :user_preferences, :issues_sort, :string
add_column :user_preferences, :merge_requests_sort, :string
2019-03-02 22:35:43 +05:30
end
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/PreventStrings
2019-03-02 22:35:43 +05:30
def down
remove_column :user_preferences, :issues_sort
remove_column :user_preferences, :merge_requests_sort
end
end