database/sqlite: remove copy-pasta from homekit

This commit is contained in:
Evgeny Zinoviev 2022-07-09 20:35:56 +03:00
parent 34b7980587
commit 95718130c8

View File

@ -2,7 +2,7 @@
class SQLiteConnection extends CommonDatabase {
const SCHEMA_VERSION = 2;
const SCHEMA_VERSION = 0;
protected SQLite3 $link;
@ -21,18 +21,9 @@ class SQLiteConnection extends CommonDatabase {
return;
if ($cur < 1) {
$this->link->exec("CREATE TABLE users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username TEXT,
password TEXT
)");
}
if ($cur < 2) {
$this->link->exec("CREATE TABLE vk_processed (
last_message_time INTEGER
)");
$this->link->exec("INSERT INTO vk_processed (last_message_time) VALUES (0)");
// TODO
}
$this->syncSchemaVersion();
}