From e16c5fe8ba3d6300c1711a56025ccecfbd4698f4 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 26 Feb 2022 11:20:18 -0500 Subject: [PATCH] DB Update Fix Mobile Contact Null --- db.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db.sql b/db.sql index 785987c9..f6e1b44a 100644 --- a/db.sql +++ b/db.sql @@ -291,7 +291,7 @@ CREATE TABLE `contacts` ( `contact_email` varchar(200) DEFAULT NULL, `contact_phone` varchar(200) DEFAULT NULL, `contact_extension` varchar(200) DEFAULT NULL, - `contact_mobile` varchar(200) DEFAULT '''NULL''', + `contact_mobile` varchar(200) DEFAULT NULL, `contact_photo` varchar(200) DEFAULT NULL, `contact_notes` text DEFAULT NULL, `contact_created_at` datetime NOT NULL, @@ -1451,4 +1451,4 @@ CREATE TABLE `vendors` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2022-02-26 11:15:13 +-- Dump completed on 2022-02-26 11:19:56