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
225 B
Ruby
9 lines
225 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddDomainToCluster < ActiveRecord::Migration[5.0]
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :clusters, :domain, :string # rubocop:disable Migration/AddLimitToStringColumns
|
|
end
|
|
end
|