You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE_ROOMS_TABLE = """CREATE TABLE IF NOT EXISTS rooms(id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT)"""
cursor.execute(CREATE_ROOMS_TABLE)
conn.commit()
print("created rooms successfully")
CREATE_TEMP_TABLE = """CREATE TABLE IF NOT EXISTS temperatures(room_id INTEGER, temperature REAL, date TIMESTAMP, FOREIGN KEY(room_id) REFERENCES rooms(id) ON DELETE CASCADE)"""