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
8 lines
287 B
Ruby
8 lines
287 B
Ruby
class AddPagesDomainVerification < ActiveRecord::Migration[4.2]
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
add_column :pages_domains, :verified_at, :datetime_with_timezone
|
|
add_column :pages_domains, :verification_code, :string # rubocop:disable Migration/AddLimitToStringColumns
|
|
end
|
|
end
|