xenu_nntp/db/newsgroup.sql
2024-11-08 16:11:18 -05:00

11 lines
259 B
SQL

begin transaction;
create table newsgroup_message (
id INTEGER PRIMARY KEY NOT NULL,
created_on DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
sender TEXT NOT NULL,
subject TEXT NOT NULL,
content TEXT NOT NULL
);
commit;