1
0
mirror of synced 2025-12-28 00:23:25 +00:00

feat(home) displaying cached stations

This commit is contained in:
Valentin
2024-06-14 18:02:10 +02:00
parent cf5f96f47b
commit 387bc0a2d7
7 changed files with 595 additions and 35 deletions

View File

@@ -28,7 +28,8 @@ try {
)");
$conn->exec("CREATE TABLE IF NOT EXISTS stops (
id INT NOT NULL PRIMARY KEY,
id INT AUTO_INCREMENT PRIMARY KEY,
stopId INT NOT NULL,
lineId INT NOT NULL,
name VARCHAR(255) NOT NULL
)");