gitlab-org--gitlab-foss/db/migrate/20181019032400_add_shards_table.rb
Mayra Cabrera 4706352416 Adds cop to enforce string limits on migrations
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
2019-08-23 21:36:12 +00:00

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