mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
9f56a014e2
Summary: Ref T10054. Ref T6961. - Existing projects with workboards had "Workboard" as the default menu item. Retain this behavior. - Populate the recently-added `hasWorkboard` flag so we can do a couple of things a little faster (see T6961). Test Plan: - Ran migration. - Verified a bunch of projects looked sensible/correct after the migration. - Created a workboard, verified `hasWorkboard` got set properly. Reviewers: chad Reviewed By: chad Maniphest Tasks: T6961, T10054 Differential Revision: https://secure.phabricator.com/D15093
60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<?php
|
|
|
|
// Populate the newish `hasWorkboard` column for projects with workboard.
|
|
// Set the default menu item to "Workboard" for projects which used to have
|
|
// that default.
|
|
|
|
$project_table = new PhabricatorProject();
|
|
$conn_w = $project_table->establishConnection('w');
|
|
|
|
$panel_table = id(new PhabricatorProfilePanelConfiguration());
|
|
$panel_conn = $panel_table->establishConnection('w');
|
|
|
|
foreach (new LiskMigrationIterator($project_table) as $project) {
|
|
$columns = queryfx_all(
|
|
$conn_w,
|
|
'SELECT * FROM %T WHERE projectPHID = %s',
|
|
id(new PhabricatorProjectColumn())->getTableName(),
|
|
$project->getPHID());
|
|
|
|
// This project has no columns, so we don't need to change anything.
|
|
if (!$columns) {
|
|
continue;
|
|
}
|
|
|
|
// This project has columns, so set its workboard flag.
|
|
queryfx(
|
|
$conn_w,
|
|
'UPDATE %T SET hasWorkboard = 1 WHERE id = %d',
|
|
$project->getTableName(),
|
|
$project->getID());
|
|
|
|
// Try to set the default menu item to "Workboard".
|
|
$config = queryfx_all(
|
|
$panel_conn,
|
|
'SELECT * FROM %T WHERE profilePHID = %s',
|
|
$panel_table->getTableName(),
|
|
$project->getPHID());
|
|
|
|
// There are already some settings, so don't touch them.
|
|
if ($config) {
|
|
continue;
|
|
}
|
|
|
|
queryfx(
|
|
$panel_conn,
|
|
'INSERT INTO %T
|
|
(phid, profilePHID, panelKey, builtinKey, visibility, panelProperties,
|
|
panelOrder, dateCreated, dateModified)
|
|
VALUES (%s, %s, %s, %s, %s, %s, %d, %d, %d)',
|
|
$panel_table->getTableName(),
|
|
$panel_table->generatePHID(),
|
|
$project->getPHID(),
|
|
PhabricatorProjectWorkboardProfilePanel::PANELKEY,
|
|
PhabricatorProject::PANEL_WORKBOARD,
|
|
PhabricatorProfilePanelConfiguration::VISIBILITY_DEFAULT,
|
|
'{}',
|
|
2,
|
|
PhabricatorTime::getNow(),
|
|
PhabricatorTime::getNow());
|
|
}
|