Page MenuHomestyx hydra

20130529.macroauthormig.php
No OneTemporary

20130529.macroauthormig.php

<?php
echo "Migrating macro authors...\n";
foreach (new LiskMigrationIterator(new PhabricatorFileImageMacro()) as $macro) {
echo "Macro #".$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 "Done.\n";

File Metadata

Mime Type
text/x-php
Expires
Tue, Feb 24, 10:22 PM (22 h, 22 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
845812
Default Alt Text
20130529.macroauthormig.php (796 B)

Event Timeline