1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-18 11:30:55 +01:00

Restore one missing "order" value to the saved query migration script

Summary: Caught this when migrating my queries in production.

Auditors: btrahan
This commit is contained in:
epriestley 2013-09-13 12:00:50 -07:00
parent 23c5fccaa3
commit 5e274778d1

View file

@ -148,6 +148,7 @@ foreach ($rows as $row) {
case 'order':
$map = array(
'priority' => 'priority',
'updated' => 'updated',
'created' => 'created',
'title' => 'title',
);