From 19952c82821cdbca348925d4dcc5f6d232beefcd Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Tue, 26 Nov 2024 14:04:09 -0500 Subject: [PATCH] Add 'created_by' column to newsgroup table --- db/newsgroup.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/db/newsgroup.sql b/db/newsgroup.sql index aaf0231..ba24933 100644 --- a/db/newsgroup.sql +++ b/db/newsgroup.sql @@ -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 );