· 8 years ago · Dec 03, 2017, 08:26 PM
1--
2-- Table structure for table `essentialsprotect`
3--
4
5CREATE TABLE IF NOT EXISTS `essentialsprotect` (
6 `id` int(11) NOT NULL AUTO_INCREMENT,
7 `worldName` varchar(150) NOT NULL,
8 `playerName` varchar(150) NOT NULL,
9 `x` int(11) NOT NULL,
10 `y` int(11) NOT NULL,
11 `z` int(11) NOT NULL,
12 PRIMARY KEY (`id`)
13) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;