xenu_nntp/db/newsgroup.sql
XANTRONIX Development 5e42789043 Commit stuff
2024-11-08 15:47:21 -05:00

11 lines
254 B
SQL

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