xenu_nntp/db/newsgroup.sql

12 lines
259 B
MySQL
Raw Normal View History

2024-11-08 15:47:21 -05:00
begin transaction;
create table newsgroup_message (
2024-11-08 16:11:18 -05:00
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
2024-11-08 15:47:21 -05:00
);
commit;