mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-28 00:24:23 +00:00
Update struct.sql
This commit is contained in:
committed by
GitHub
parent
a3100fb691
commit
8e3f4e16a9
+20
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user