-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.sql
More file actions
89 lines (72 loc) · 2.3 KB
/
schema.sql
File metadata and controls
89 lines (72 loc) · 2.3 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
- phpMyAdmin SQL Dump
-- version 3.3.3
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Aug 01, 2012 at 01:18 AM
-- Server version: 5.0.51
-- PHP Version: 5.2.6-1+lenny3
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `sourcemod_beta`
--
-- --------------------------------------------------------
--
-- Table structure for table `jump`
--
CREATE TABLE IF NOT EXISTS `jump` (
`steamid` varchar(64) NOT NULL,
`map` varchar(64) NOT NULL,
`class` tinyint(4) NOT NULL,
`id` tinyint(4) NOT NULL,
`x` float NOT NULL,
`y` float NOT NULL,
`z` float NOT NULL,
UNIQUE KEY `steamid` (`steamid`,`map`,`id`,`class`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `jump_courses`
--
CREATE TABLE IF NOT EXISTS `jump_courses` (
`id` int(11) NOT NULL auto_increment,
`map` varchar(128) NOT NULL,
`name` varchar(128) NOT NULL,
`start_x` float NOT NULL,
`start_y` float NOT NULL,
`start_z` float NOT NULL,
`end_x` float NOT NULL,
`end_y` float NOT NULL,
`end_z` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=193 ;
-- --------------------------------------------------------
--
-- Table structure for table `jump_maps`
--
CREATE TABLE IF NOT EXISTS `jump_maps` (
`map` varchar(128) NOT NULL,
`enabled` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`map`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `jump_times`
--
CREATE TABLE IF NOT EXISTS `jump_times` (
`id` int(11) NOT NULL auto_increment,
`course_id` int(11) NOT NULL,
`name` varchar(128) NOT NULL,
`steamid` varchar(64) NOT NULL,
`class` int(11) NOT NULL,
`ammo` int(11) NOT NULL,
`hardcore` int(11) NOT NULL,
`time` int(11) NOT NULL,
`timestamp` timestamp NOT NULL default '0000-00-00 00:00:00' on update CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=42120 ;
-- --------------------------------------------------------