2019-01-07 12:55:21 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class CreateErrorTrackingSettings < ActiveRecord::Migration[5.0]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
# rubocop:disable Migration/PreventStrings
|
2019-01-07 12:55:21 -05:00
|
|
|
def change
|
|
|
|
create_table :project_error_tracking_settings, id: :int, primary_key: :project_id, default: nil do |t|
|
|
|
|
t.boolean :enabled, null: false, default: true
|
|
|
|
t.string :api_url, null: false
|
|
|
|
t.string :encrypted_token
|
|
|
|
t.string :encrypted_token_iv
|
|
|
|
t.foreign_key :projects, column: :project_id, on_delete: :cascade
|
|
|
|
end
|
|
|
|
end
|
2020-04-21 11:21:10 -04:00
|
|
|
# rubocop:enable Migration/PreventStrings
|
2019-01-07 12:55:21 -05:00
|
|
|
end
|