Update struct.sql

This commit is contained in:
Catalin Novgorodschi
2026-05-24 10:34:13 +03:00
committed by GitHub
parent a3100fb691
commit 8e3f4e16a9
+20 -1
View File
@@ -1784,4 +1784,23 @@ CREATE INDEX idx_bonus ON %PREFIX%croppers (best_oasis_bonus);
--
-- Dumping data for table `%prefix%croppers`
--
--
--
-- Table structure for table `%PREFIX%maintenance`
--
CREATE TABLE IF NOT EXISTS `%PREFIX%maintenance` (
`id` tinyint(1) NOT NULL DEFAULT 1,
`active` tinyint(1) NOT NULL DEFAULT 0,
`message` varchar(255) DEFAULT 'Server in maintenance',
`started_by` int(11) DEFAULT NULL,
`started_at` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `%PREFIX%maintenance`
--
INSERT INTO `%PREFIX%maintenance` (`id`, `active`, `message`, `started_by`, `started_at`) VALUES
(1, 0, 'Server in maintenance', NULL, NULL);