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

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

class AddDingTalkTrackerData < Gitlab::Database::Migration[2.0]
  INDEX_NAME = 'index_on_dingtalk_tracker_data_corpid'

  def change
    create_table :dingtalk_tracker_data, comment: 'JiHu-specific table' do |t|
      t.references :integration, foreign_key: { on_delete: :cascade },
                   type: :bigint, index: true, null: false, comment: 'JiHu-specific column'
      t.timestamps_with_timezone
      t.text :corpid, comment: 'JiHu-specific column', limit: 255
      t.index :corpid, where: "(corpid IS NOT NULL)", name: INDEX_NAME, comment: 'JiHu-specific index'
    end
  end
end