Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210720130006_create_error_tracking_client_keys.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: caea4a3d65b1b7563a9afa16fdc3567706b2f12a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

class CreateErrorTrackingClientKeys < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  def up
    create_table_with_constraints :error_tracking_client_keys do |t|
      t.references :project,
        index: true,
        null: false,
        foreign_key: { on_delete: :cascade }

      t.boolean :active, default: true, null: false
      t.text :public_key, null: false
      t.text_limit :public_key, 255

      t.timestamps_with_timezone
    end
  end

  def down
    drop_table :error_tracking_client_keys
  end
end