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

20210205213933_drop_alerts_service_data.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ad6c90290e5ad6dbea4e35a5b9e728883de2b75 (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
# frozen_string_literal: true

class DropAlertsServiceData < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      drop_table :alerts_service_data
    end
  end

  # rubocop:disable Migration/PreventStrings
  def down
    with_lock_retries do
      create_table :alerts_service_data do |t|
        t.bigint :service_id, null: false
        t.timestamps_with_timezone
        t.string :encrypted_token, limit: 255
        t.string :encrypted_token_iv, limit: 255
      end
    end
  end
  # rubocop:enable Migration/PreventStrings
end