This commit is contained in:
Shish
2019-11-04 01:04:08 +00:00
parent 7601140825
commit c7d90c2df7
9 changed files with 19 additions and 20 deletions

View File

@ -272,9 +272,9 @@ class AdminPage extends Extension
}
$database->execute("ALTER TABLE images AUTO_INCREMENT=".(count($ids) + 1));
} elseif ($matches['proto'] == DatabaseDriver::PGSQL) {
//TODO: Make this work with PostgreSQL
throw new SCoreException("TODO: Make this work with PostgreSQL");
} elseif ($matches['proto'] == DatabaseDriver::SQLITE) {
//TODO: Make this work with SQLite
throw new SCoreException("TODO: Make this work with SQLite");
}
return true;
}