Public Access
fix(transport_helper): fix db type typo
This commit is contained in:
@@ -245,7 +245,7 @@ class Station {
|
|||||||
static void initStationLinesTable() async {
|
static void initStationLinesTable() async {
|
||||||
Database database = DbHelper.db;
|
Database database = DbHelper.db;
|
||||||
database.execute("""CREATE TABLE IF NOT EXISTS stationlines(
|
database.execute("""CREATE TABLE IF NOT EXISTS stationlines(
|
||||||
id INT PRIMARY KEY AUTOINCREMENT,
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
stationid TEXT,
|
stationid TEXT,
|
||||||
lineid TEXT,
|
lineid TEXT,
|
||||||
FOREIGN KEY (stationid) REFERENCES station(stationid),
|
FOREIGN KEY (stationid) REFERENCES station(stationid),
|
||||||
|
|||||||
Reference in New Issue
Block a user