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

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

class RemoveOpenProjectDataTable < Gitlab::Database::Migration[1.0]
  def up
    drop_table :open_project_tracker_data
  end

  def down
    create_table :open_project_tracker_data do |t|
      t.integer :service_id, index: { name: 'index_open_project_tracker_data_on_service_id' }, null: false
      t.timestamps_with_timezone
      t.string :encrypted_url, limit: 255
      t.string :encrypted_url_iv, limit: 255
      t.string :encrypted_api_url, limit: 255
      t.string :encrypted_api_url_iv, limit: 255
      t.string :encrypted_token, limit: 255
      t.string :encrypted_token_iv, limit: 255
      t.string :closed_status_id, limit: 5
      t.string :project_identifier_code, limit: 100
    end
  end
end