updated maildb state

This commit is contained in:
Paul 2023-08-26 09:48:47 +02:00
parent 24e61c905b
commit 78192fa3f2

View File

@ -39,7 +39,7 @@ def CreateDB(conn, cursor):
id serial NOT NULL,
sender text NULL,
recipient text NULL,
"date" timestamp NOT NULL DEFAULT CURRENT_DATE,
"date" timestamp NOT NULL DEFAULT NOW(),
"content" text NULL,
CONSTRAINT mail_pkey PRIMARY KEY (id)
)''')