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
11 lines
277 B
Ruby
11 lines
277 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddShardsTable < ActiveRecord::Migration[4.2]
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
create_table :shards do |t|
|
|
t.string :name, null: false, index: { unique: true } # rubocop:disable Migration/AddLimitToStringColumns
|
|
end
|
|
end
|
|
end
|