From 9bf98f4fb816d752e6f51678c8461831e3a85b68 Mon Sep 17 00:00:00 2001 From: fbachus Date: Thu, 2 Jul 2026 01:39:40 +0200 Subject: [PATCH] fix(transport_helper): fix db type typo --- lib/transport_helper.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/transport_helper.dart b/lib/transport_helper.dart index 43113ff..75796ef 100644 --- a/lib/transport_helper.dart +++ b/lib/transport_helper.dart @@ -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),