Default direction is ascending

This commit is contained in:
Samuel Georges 2015-08-15 10:00:11 +10:00
parent de2a088e20
commit 6f414fe611
1 changed files with 1 additions and 1 deletions

View File

@ -390,7 +390,7 @@ class VersionManager
return $this->databaseHistory[$code];
}
$historyInfo = Db::table('system_plugin_history')->where('code', $code)->orderBy('id','ASC')->get();
$historyInfo = Db::table('system_plugin_history')->where('code', $code)->orderBy('id')->get();
return $this->databaseHistory[$code] = $historyInfo;
}