debian-mirror-gitlab/db/migrate/20191204192726_add_design_disk_path_to_geo_hashed_storage_migrated_events.rb
2020-01-01 13:55:28 +05:30

13 lines
369 B
Ruby

# 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