-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathts-base.sql
46 lines (40 loc) · 1.93 KB
/
ts-base.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 10.5.8-MariaDB - mariadb.org binary distribution
-- Server OS: Win64
-- HeidiSQL Version: 11.0.0.5919
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Dumping database structure for ts-base
CREATE DATABASE IF NOT EXISTS `ts-base` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `ts-base`;
-- Dumping structure for table ts-base.characters
CREATE TABLE IF NOT EXISTS `characters` (
`cid` int(11) NOT NULL AUTO_INCREMENT,
`fullname` varchar(255) NOT NULL DEFAULT '0',
`first_name` varchar(255) NOT NULL DEFAULT '0',
`last_name` varchar(255) NOT NULL DEFAULT '0',
`dob` varchar(255) NOT NULL DEFAULT '0',
`phone` bigint(20) NOT NULL DEFAULT 0,
`steamid` varchar(255) NOT NULL DEFAULT '0',
`job` varchar(255) NOT NULL DEFAULT '0',
`admin` int(11) NOT NULL DEFAULT 0,
`dev` int(11) NOT NULL DEFAULT 0,
`hunger` int(11) NOT NULL DEFAULT 0,
`thirst` int(11) NOT NULL DEFAULT 0,
`health` int(11) NOT NULL DEFAULT 0,
`armor` int(11) NOT NULL DEFAULT 0,
`money` int(11) NOT NULL DEFAULT 0,
`bank` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`cid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Dumping data for table ts-base.characters: ~0 rows (approximately)
/*!40000 ALTER TABLE `characters` DISABLE KEYS */;
/*!40000 ALTER TABLE `characters` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;