User Inbox

This commit is contained in:
Ibnu Maksum
2024-08-05 10:05:10 +07:00
parent 150f9a5c41
commit be507a013a
6 changed files with 130 additions and 69 deletions

View File

@ -229,7 +229,7 @@ CREATE TABLE `tbl_customers_inbox` (
`date_created` datetime NOT NULL,
`date_read` datetime DEFAULT NULL,
`subject` varchar(64) COLLATE utf8mb4_general_ci NOT NULL,
`body` varchar(512) COLLATE utf8mb4_general_ci NOT NULL,
`body` TEXT NULL DEFAULT NULL,
`from` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'System' COMMENT 'System or Admin or Else',
`admin_id` int NOT NULL DEFAULT '0' COMMENT 'other than admin is 0',
PRIMARY KEY (`id`)