Merge pull request #371 from wrongecho/db

Make contact mobile default NULL
This commit is contained in:
Johnny
2022-02-22 18:20:23 -05:00
committed by GitHub

2
db.sql
View File

@@ -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,