2013-08-02 21:56:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$table = new PhabricatorPaste();
|
|
|
|
$x_table = new PhabricatorPasteTransaction();
|
|
|
|
|
|
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
$conn_w->openTransaction();
|
|
|
|
|
|
|
|
echo "Adding transactions for existing paste objects...\n";
|
|
|
|
|
|
|
|
$rows = new LiskRawMigrationIterator($conn_w, 'pastebin_paste');
|
|
|
|
foreach ($rows as $row) {
|
|
|
|
|
|
|
|
$id = $row['id'];
|
|
|
|
echo "Adding transactions for paste id {$id}...\n";
|
|
|
|
|
|
|
|
$xaction_phid = PhabricatorPHID::generateNewPHID(
|
2014-07-24 00:05:46 +02:00
|
|
|
PhabricatorApplicationTransactionTransactionPHIDType::TYPECONST);
|
2013-08-02 21:56:58 +02:00
|
|
|
|
|
|
|
queryfx(
|
|
|
|
$conn_w,
|
|
|
|
'INSERT INTO %T (phid, authorPHID, objectPHID, viewPolicy, editPolicy,
|
|
|
|
transactionType, oldValue, newValue,
|
2013-08-04 20:32:32 +02:00
|
|
|
contentSource, metadata, dateCreated, dateModified,
|
|
|
|
commentVersion)
|
|
|
|
VALUES (%s, %s, %s, %s, %s, %s, %ns, %ns, %s, %s, %d, %d, %d)',
|
2013-08-02 21:56:58 +02:00
|
|
|
$x_table->getTableName(),
|
|
|
|
$xaction_phid,
|
|
|
|
$row['authorPHID'],
|
|
|
|
$row['phid'],
|
|
|
|
'public',
|
|
|
|
$row['authorPHID'],
|
2014-05-04 20:11:46 +02:00
|
|
|
PhabricatorPasteTransaction::TYPE_CONTENT,
|
2013-08-02 21:56:58 +02:00
|
|
|
'null',
|
|
|
|
$row['filePHID'],
|
|
|
|
PhabricatorContentSource::newForSource(
|
|
|
|
PhabricatorContentSource::SOURCE_LEGACY,
|
|
|
|
array())->serialize(),
|
|
|
|
'[]',
|
|
|
|
$row['dateCreated'],
|
2013-08-04 20:32:32 +02:00
|
|
|
$row['dateCreated'],
|
|
|
|
0);
|
2013-08-02 21:56:58 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$conn_w->saveTransaction();
|
|
|
|
|
|
|
|
echo "Done.\n";
|