diff options
| author | 2018-10-26 21:05:00 +0200 | |
|---|---|---|
| committer | 2018-10-26 21:05:00 +0200 | |
| commit | c57aade0f22205c40792184b78f5071b5c769a8b (patch) | |
| tree | dd642968690337b8adbab0005e4f09cb62528a22 /app/Models | |
| parent | f2bef3f8933788d885a7175c4c3d3d27cbe1d33f (diff) | |
Introduce a routine for minor DB maintenance (#2080)
Diffstat (limited to 'app/Models')
| -rw-r--r-- | app/Models/DatabaseDAO.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Models/DatabaseDAO.php b/app/Models/DatabaseDAO.php index dbd328bf7..b331eccc3 100644 --- a/app/Models/DatabaseDAO.php +++ b/app/Models/DatabaseDAO.php @@ -160,4 +160,8 @@ class FreshRSS_DatabaseDAO extends Minz_ModelPdo { } return $ok; } + + public function minorDbMaintenance() { + $this->ensureCaseInsensitiveGuids(); + } } |
