summaryrefslogtreecommitdiff
path: root/db/migrate/20220513093615_add_ding_talk_tracker_data.rb
blob: 0289b983a482d4b83f416e2b80439296f6507617 (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