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

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

class CreateIncidentManagementTimelineEventTags < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def up
    create_table :incident_management_timeline_event_tags do |t|
      t.timestamps_with_timezone null: false
      t.references :project, null: false, index: false, foreign_key: { on_delete: :cascade }
      t.text :name, limit: 255, null: false

      t.index [:project_id, :name], unique: true, name: 'index_im_timeline_event_tags_name_project_id'
    end
  end

  def down
    drop_table :incident_management_timeline_event_tags
  end
end