mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 13:22:42 +01:00
25 lines
524 B
PHP
25 lines
524 B
PHP
|
<?php
|
||
|
|
||
|
$old_key = 'phabricator.show-beta-applications';
|
||
|
$new_key = 'phabricator.show-prototypes';
|
||
|
|
||
|
echo "Migrating '{$old_key}' to '{$new_key}'...\n";
|
||
|
|
||
|
if (PhabricatorEnv::getEnvConfig($new_key)) {
|
||
|
echo "Skipping migration, new data is already set.\n";
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
$old = PhabricatorEnv::getEnvConfigIfExists($old_key);
|
||
|
if (!$old) {
|
||
|
echo "Skipping migration, old data does not exist.\n";
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
PhabricatorConfigEntry::loadConfigEntry($new_key)
|
||
|
->setIsDeleted(0)
|
||
|
->setValue($old)
|
||
|
->save();
|
||
|
|
||
|
echo "Done.\n";
|