1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 23:27:17 +02:00

SQLite: Remove useless condition

This commit is contained in:
Jakub Vrana
2025-03-06 17:55:45 +01:00
parent f05f4b4cbc
commit dc50bf17ea

View File

@@ -421,7 +421,7 @@ if (isset($_GET["sqlite"])) {
}
function auto_increment() {
return " PRIMARY KEY" . (DRIVER == "sqlite" ? " AUTOINCREMENT" : "");
return " PRIMARY KEY AUTOINCREMENT";
}
function alter_table($table, $name, $fields, $foreign, $comment, $engine, $collation, $auto_increment, $partitioning) {