2019-02-15 15:39:39 +05:30
|
|
|
class AddUuidToApplicationSettings < ActiveRecord::Migration[4.2]
|
2017-08-17 22:00:37 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
|
|
|
add_column :application_settings, :uuid, :string
|
|
|
|
execute("UPDATE application_settings SET uuid = #{quote(SecureRandom.uuid)}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_column :application_settings, :uuid
|
|
|
|
end
|
|
|
|
end
|