summaryrefslogtreecommitdiff
path: root/db/migrate/20190325080727_truncate_user_fullname.rb
blob: e5f88671eefc1d09eb53eedad3c1830a25d0fcd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# rubocop:disable Migration/UpdateLargeTable
class TruncateUserFullname < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    truncated_name = Arel.sql('SUBSTRING(name from 1 for 128)')
    where_clause = Arel.sql("LENGTH(name) > 128")

    update_column_in_batches(:users, :name, truncated_name) do |table, query|
      query.where(where_clause)
    end
  end

  def down
    # noop
  end
end