8 lines
295 B
SQL
8 lines
295 B
SQL
CREATE TABLE IF NOT EXISTS chat (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
name TEXT NOT NULL,
|
|
msgs TEXT NOT NULL, -- Store messages as a comma-separated string
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|