summaryrefslogtreecommitdiff
path: root/db/migrate/20181212171634_create_error_tracking_settings.rb
blob: 18c38bd2c477960fadcef7e3b75faca65a933564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class CreateErrorTrackingSettings < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  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
end