Add 'created_by' column to newsgroup table

This commit is contained in:
XANTRONIX Development 2024-11-26 14:04:09 -05:00
parent 7ba14e20b5
commit 19952c8282

View file

@ -3,6 +3,7 @@ begin transaction;
create table newsgroup (
id INTEGER PRIMARY KEY NOT NULL,
created_on DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
created_by TEXT NOT NULL,
name TEXT NOT NULL,
description TEXT NOT NULL
);