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
25 lines
856 B
Ruby
25 lines
856 B
Ruby
# frozen_string_literal: true
|
|
|
|
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
class CreateIssueTrackerData < ActiveRecord::Migration[5.1]
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
DOWNTIME = false
|
|
|
|
def change
|
|
# rubocop:disable Migration/AddLimitToStringColumns
|
|
create_table :issue_tracker_data do |t|
|
|
t.references :service, foreign_key: { on_delete: :cascade }, type: :integer, index: true, null: false
|
|
t.timestamps_with_timezone
|
|
t.string :encrypted_project_url
|
|
t.string :encrypted_project_url_iv
|
|
t.string :encrypted_issues_url
|
|
t.string :encrypted_issues_url_iv
|
|
t.string :encrypted_new_issue_url
|
|
t.string :encrypted_new_issue_url_iv
|
|
end
|
|
# rubocop:enable Migration/AddLimitToStringColumns
|
|
end
|
|
end
|