From 4be29606adb4445da4198b03a555be5de2de37d6 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Sat, 9 Nov 2024 11:54:31 -0500 Subject: [PATCH] Slight column reordering (who cares) --- db/newsgroup.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/newsgroup.sql b/db/newsgroup.sql index 4fceaec..5f18afe 100644 --- a/db/newsgroup.sql +++ b/db/newsgroup.sql @@ -9,9 +9,9 @@ create table newsgroup ( create table newsgroup_message ( id INTEGER PRIMARY KEY NOT NULL, + created_on DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, newsgroup_id INTEGER NOT NULL, message_id TEXT NOT NULL UNIQUE, - created_on DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, sender TEXT NOT NULL, subject TEXT NOT NULL, content TEXT NOT NULL,