forked from GuntherDW/Homes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.sql
More file actions
52 lines (44 loc) · 1.27 KB
/
db.sql
File metadata and controls
52 lines (44 loc) · 1.27 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
-- phpMyAdmin SQL Dump
-- version 3.3.7deb3
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 12, 2011 at 07:07 PM
-- Server version: 5.1.49
-- PHP Version: 5.3.3-7
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `tweakcraft`
--
-- --------------------------------------------------------
--
-- Table structure for table `homes`
--
CREATE TABLE IF NOT EXISTS `homes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
`world` varchar(50) NOT NULL DEFAULT 'world',
`x` double NOT NULL,
`y` double NOT NULL,
`z` double NOT NULL,
`rotX` float NOT NULL,
`rotY` float NOT NULL,
`group` varchar(64) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=840 ;
-- --------------------------------------------------------
--
-- Table structure for table `savehomes`
--
CREATE TABLE IF NOT EXISTS `savehomes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(45) NOT NULL,
`world` varchar(50) NOT NULL DEFAULT 'world',
`x` double NOT NULL,
`y` double NOT NULL,
`z` double NOT NULL,
`rotX` float NOT NULL,
`rotY` float NOT NULL,
`description` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=14741 ;