This commit is contained in:
2026-02-25 15:14:30 +00:00
parent 0a9934b889
commit c4b9e5f360

View File

@@ -24,7 +24,7 @@ CREATE TABLE IF NOT EXISTS val (
default_time TEXT NOT NULL DEFAULT '21:00'
)
""")
cursor.execute("INSERT INTO settings (default_time) VALUES (?)", ('21:00',))
cursor.execute("INSERT INTO val (default_time) VALUES (?)", ('21:00',))
conn.commit()
conn.close()