xenu_nntp/db/newsgroup.sql

12 lines
254 B
MySQL
Raw Normal View History

2024-11-08 15:47:21 -05:00
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;