Party/database.py
fingadumbledore cbc48d2c54 chat update
2023-01-30 07:58:37 +01:00

8 lines
176 B
Python

import sqlite3
conn = sqlite3.connect("chat.db")
c = conn.cursor()
c.execute("CREATE TABLE messages (username text, message text, timestamp text)")
conn.commit()
conn.close()