2018-11-13 02:27:31 -05:00
|
|
|
class AddUuidToApplicationSettings < ActiveRecord::Migration[4.2]
|
2017-04-05 08:49:22 -04:00
|
|
|
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
|