Dump new DB Structure

This commit is contained in:
johnnyq
2026-07-27 18:38:48 -04:00
parent a4fdced10f
commit 8825661360

5
db.sql
View File

@@ -1402,7 +1402,8 @@ CREATE TABLE `logs` (
`log_client_id` int(11) NOT NULL DEFAULT 0,
`log_user_id` int(11) NOT NULL DEFAULT 0,
`log_entity_id` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`log_id`)
PRIMARY KEY (`log_id`),
KEY `log_created_at` (`log_created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -2996,4 +2997,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2026-07-25 16:50:10
-- Dump completed on 2026-07-27 18:38:36