mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-13 16:14:36 +00:00
8 lines
176 B
Python
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()
|