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

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

class CreateAgentActivityEvents < Gitlab::Database::Migration[1.0]
  def change
    create_table :agent_activity_events do |t|
      t.bigint :agent_id, null: false
      t.bigint :user_id, index: { where: 'user_id IS NOT NULL' }
      t.bigint :project_id, index: { where: 'project_id IS NOT NULL' }
      t.bigint :merge_request_id, index: { where: 'merge_request_id IS NOT NULL' }
      t.bigint :agent_token_id, index: { where: 'agent_token_id IS NOT NULL' }

      t.datetime_with_timezone :recorded_at, null: false
      t.integer :kind, limit: 2, null: false
      t.integer :level, limit: 2, null: false

      t.binary :sha
      t.text :detail, limit: 255

      t.index [:agent_id, :recorded_at, :id]
    end
  end
end