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

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

class AddDesignDiskPathToGeoHashedStorageMigratedEvents < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :geo_hashed_storage_migrated_events, :old_design_disk_path, :text
    add_column :geo_hashed_storage_migrated_events, :new_design_disk_path, :text
  end
end