скрытие магазина и механизм удаления гильдий

This commit is contained in:
2026-07-28 14:46:19 +04:00
parent d9f0d414fc
commit 6f075133f7
6 changed files with 267 additions and 1716001 deletions
+11
View File
@@ -14,6 +14,17 @@
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Global store switch. Keep the initial value disabled until the storefront is
-- ready. Existing installations preserve their current value on re-import.
CREATE TABLE IF NOT EXISTS `store_config` (
`id` tinyint unsigned NOT NULL,
`enabled` tinyint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
INSERT INTO `store_config` (`id`, `enabled`) VALUES (1, 0)
ON DUPLICATE KEY UPDATE `id` = VALUES(`id`);
-- Dumping structure for table store.store_categories
CREATE TABLE IF NOT EXISTS `store_categories` (
`id` int unsigned NOT NULL AUTO_INCREMENT,