fix(transport_helper): fix db type typo

This commit is contained in:
fbachus
2026-07-02 01:39:40 +02:00
parent 5ce11ef945
commit 9bf98f4fb8
+1 -1
View File
@@ -245,7 +245,7 @@ class Station {
static void initStationLinesTable() async {
Database database = DbHelper.db;
database.execute("""CREATE TABLE IF NOT EXISTS stationlines(
id INT PRIMARY KEY AUTOINCREMENT,
id INTEGER PRIMARY KEY AUTOINCREMENT,
stationid TEXT,
lineid TEXT,
FOREIGN KEY (stationid) REFERENCES station(stationid),