summaryrefslogtreecommitdiff
path: root/db/migrate/20191204192726_add_design_disk_path_to_geo_hashed_storage_migrated_events.rb
blob: 8631502ded89cda796a3ccc42aac4c257360d1f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

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

  DOWNTIME = false

  # rubocop:disable Migration/AddLimitToTextColumns
  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
  # rubocop:enable Migration/AddLimitToTextColumns
end