From b698118a4749d02b4694dbc9d912668708525951 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Mon, 27 Aug 2018 17:18:55 +0200 Subject: [PATCH] Updated mails queue structure --- db_struct.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db_struct.sql b/db_struct.sql index 9a7b439..f2a398d 100644 --- a/db_struct.sql +++ b/db_struct.sql @@ -171,7 +171,7 @@ CREATE TABLE `comunic_mails_queue` ( `id` int(11) NOT NULL AUTO_INCREMENT, `priority` int(11) DEFAULT NULL, `time_insert` int(11) DEFAULT NULL, - `userID` int(11) DEFAULT NULL, + `user_id` int(11) DEFAULT NULL, `template` varchar(45) DEFAULT NULL, `data` text DEFAULT NULL, PRIMARY KEY (`id`)