This commit is contained in:
Your Name
2025-02-25 15:25:21 +01:00
parent 20a0786380
commit 0549471669

View File

@@ -26,10 +26,12 @@ CREATE TABLE IF NOT EXISTS timestamp_table (
)
""")
cursor.execute("""
INSERT INTO timestamp_table (id, last_updated) VALUES (1, CURRENT_TIMESTAMP);
INSERT OR REPLACE INTO timestamp_table (id, last_updated)
VALUES (1, CURRENT_TIMESTAMP);
""")
# Create a table NPM
cursor.execute("""
CREATE TABLE IF NOT EXISTS data_NPM (