Page MenuHomePhorge

20130529.macroauthormig.php
No OneTemporary

Size
820 B
Referenced Files
None
Subscribers
None

20130529.macroauthormig.php

<?php
echo pht('Migrating macro authors...')."\n";
foreach (new LiskMigrationIterator(new PhabricatorFileImageMacro()) as $macro) {
echo pht('Macro #%d', $macro->getID())."\n";
if ($macro->getAuthorPHID()) {
// Already have an author; skip it.
continue;
}
if (!$macro->getFilePHID()) {
// No valid file; skip it.
continue;
}
$file = id(new PhabricatorFile())->loadOneWhere(
'phid = %s',
$macro->getFilePHID());
if (!$file) {
// Couldn't load the file; skip it.
continue;
}
if (!$file->getAuthorPHID()) {
// File has no author; skip it.
continue;
}
queryfx(
$macro->establishConnection('w'),
'UPDATE %T SET authorPHID = %s WHERE id = %d',
$macro->getTableName(),
$file->getAuthorPHID(),
$macro->getID());
}
echo pht('Done.')."\n";

File Metadata

Mime Type
text/x-php
Expires
Wed, Jun 18, 5:43 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
223985
Default Alt Text
20130529.macroauthormig.php (820 B)

Event Timeline