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
14 lines
470 B
Ruby
14 lines
470 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateProjectMetricsSettings < ActiveRecord::Migration[5.0]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
create_table :project_metrics_settings, id: :int, primary_key: :project_id, default: nil do |t|
|
|
t.string :external_dashboard_url, null: false # rubocop:disable Migration/AddLimitToStringColumns
|
|
t.foreign_key :projects, column: :project_id, on_delete: :cascade
|
|
end
|
|
end
|
|
end
|