скрытие магазина и механизм удаления гильдий
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user