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
9 lines
239 B
Ruby
9 lines
239 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddUsernameToDeployTokens < ActiveRecord::Migration[5.1]
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :deploy_tokens, :username, :string # rubocop:disable Migration/AddLimitToStringColumns
|
|
end
|
|
end
|