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
21 lines
658 B
Ruby
21 lines
658 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateReleasesLinkTable < ActiveRecord::Migration[5.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
# rubocop:disable Migration/AddLimitToStringColumns
|
|
create_table :release_links, id: :bigserial do |t|
|
|
t.references :release, null: false, index: false, foreign_key: { on_delete: :cascade }
|
|
t.string :url, null: false
|
|
t.string :name, null: false
|
|
t.timestamps_with_timezone null: false
|
|
|
|
t.index [:release_id, :url], unique: true
|
|
t.index [:release_id, :name], unique: true
|
|
end
|
|
# rubocop:enable Migration/AddLimitToStringColumns
|
|
end
|
|
end
|