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
492 B
Ruby
16 lines
492 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateProjectAliases < ActiveRecord::Migration[5.1]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
create_table :project_aliases do |t|
|
|
t.references :project, null: false, index: true, foreign_key: { on_delete: :cascade }, type: :integer
|
|
t.string :name, null: false, index: { unique: true } # rubocop:disable Migration/AddLimitToStringColumns
|
|
|
|
t.timestamps_with_timezone null: false
|
|
end
|
|
end
|
|
end
|