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
16 lines
551 B
Ruby
16 lines
551 B
Ruby
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
class AddUploadsBuilderContext < ActiveRecord::Migration[4.2]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
# Set this constant to true if this migration requires downtime.
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
# rubocop:disable Migration/AddLimitToStringColumns
|
|
add_column :uploads, :mount_point, :string
|
|
add_column :uploads, :secret, :string
|
|
# rubocop:enable Migration/AddLimitToStringColumns
|
|
end
|
|
end
|