debian-mirror-gitlab/db/migrate/20191204192726_add_design_disk_path_to_geo_hashed_storage_migrated_events.rb

15 lines
472 B
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
# frozen_string_literal: true
class AddDesignDiskPathToGeoHashedStorageMigratedEvents < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/AddLimitToTextColumns
2020-01-01 13:55:28 +05:30
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
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/AddLimitToTextColumns
2020-01-01 13:55:28 +05:30
end