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

20230802212443_add_current_user_todos_widget_to_epic_work_item_type.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 958a5d6edb94b39c7d7165651a7c417c40a9e07d (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true

class AddCurrentUserTodosWidgetToEpicWorkItemType < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!
  restrict_gitlab_migration gitlab_schema: :gitlab_main

  EPIC_ENUM_VALUE = 7
  WIDGET_NAME = 'Current user todos'
  WIDGET_ENUM_VALUE = 15

  class MigrationWorkItemType < MigrationRecord
    self.table_name = 'work_item_types'
  end

  class MigrationWidgetDefinition < MigrationRecord
    self.table_name = 'work_item_widget_definitions'
  end

  def up
    epic_work_item_type = MigrationWorkItemType.find_by(base_type: EPIC_ENUM_VALUE, namespace_id: nil)

    # Epic type should exist in production applications, checking here to avoid failures
    # if inconsistent data is present.
    return say('Epic work item type does not exist, skipping widget creation') unless epic_work_item_type

    widgets = [
      {
        work_item_type_id: epic_work_item_type.id,
        name: WIDGET_NAME,
        widget_type: WIDGET_ENUM_VALUE
      }
    ]

    MigrationWidgetDefinition.upsert_all(
      widgets,
      unique_by: :index_work_item_widget_definitions_on_default_witype_and_name
    )
  end

  def down
    epic_work_item_type = MigrationWorkItemType.find_by(base_type: EPIC_ENUM_VALUE, namespace_id: nil)

    return say('Epic work item type does not exist, skipping widget removal') unless epic_work_item_type

    widget_definition = MigrationWidgetDefinition.find_by(
      work_item_type_id: epic_work_item_type.id,
      widget_type: WIDGET_ENUM_VALUE,
      name: WIDGET_NAME,
      namespace_id: nil
    )

    return say('Widget definition not found, skipping widget removal') unless widget_definition

    widget_definition.destroy
  end
end