Nuevos cambios hechos de diseño

This commit is contained in:
ellecio2
2023-08-23 17:33:44 -04:00
parent 7a806f84ff
commit d2e9ba53ab
3485 changed files with 691106 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
CREATE TABLE `product_queries` (
`id` bigint(20) UNSIGNED NOT NULL,
`customer_id` int(11) NOT NULL,
`seller_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`question` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`reply` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
ALTER TABLE `product_queries`
ADD PRIMARY KEY (`id`);
ALTER TABLE `product_queries`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
UPDATE `business_settings` SET `value` = '6.1.2' WHERE `business_settings`.`type` = 'current_version';
COMMIT;