4706352416
This cop will analyze migrations that add columns with string, and report an offense if the string has no limit enforced Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/64505
24 lines
765 B
Ruby
24 lines
765 B
Ruby
# 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 AddFieldsToUserPreferences < ActiveRecord::Migration[5.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
disable_ddl_transaction!
|
|
|
|
DOWNTIME = false
|
|
|
|
def up
|
|
add_column(:user_preferences, :timezone, :string) # rubocop:disable Migration/AddLimitToStringColumns
|
|
add_column(:user_preferences, :time_display_relative, :boolean)
|
|
add_column(:user_preferences, :time_format_in_24h, :boolean)
|
|
end
|
|
|
|
def down
|
|
remove_column(:user_preferences, :timezone)
|
|
remove_column(:user_preferences, :time_display_relative)
|
|
remove_column(:user_preferences, :time_format_in_24h)
|
|
end
|
|
end
|