Added fields to contacts for billing and technical contacts

This commit is contained in:
johnnyq
2023-01-24 16:19:49 -05:00
parent da2c98a48a
commit bdd8f8823f
3 changed files with 14 additions and 5 deletions

4
db.sql
View File

@@ -344,6 +344,8 @@ CREATE TABLE `contacts` (
`contact_password_reset_token` varchar(200) DEFAULT NULL,
`contact_token_expire` datetime DEFAULT NULL,
`contact_important` tinyint(1) NOT NULL DEFAULT 0,
`contact_billing` tinyint(1) DEFAULT 0,
`contact_technical` tinyint(1) DEFAULT 0,
`contact_created_at` datetime NOT NULL DEFAULT current_timestamp(),
`contact_updated_at` datetime DEFAULT NULL ON UPDATE current_timestamp(),
`contact_archived_at` datetime DEFAULT NULL,
@@ -1516,4 +1518,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-01-23 21:43:07
-- Dump completed on 2023-01-24 16:19:14