/* Navicat MySQL Data Transfer Source Server : localhost Source Server Version : 50528 Source Host : localhost:3306 Source Database : test Target Server Type : MYSQL Target Server Version : 50528 File Encoding : 65001 Date: 2013-06-02 17:54:44 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `houses` -- ---------------------------- DROP TABLE IF EXISTS `houses`; CREATE TABLE `houses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `Owned` int(11) NOT NULL DEFAULT '0', `Level` int(11) NOT NULL DEFAULT '999', `Description` varchar(16) NOT NULL DEFAULT 'High', `OwnerID` int(11) NOT NULL DEFAULT '-1', `OwnerName` varchar(24) NOT NULL DEFAULT 'Nobody', `Owner` varchar(24) NOT NULL DEFAULT 'No-Owner', `ExteriorX` float(10,5) NOT NULL DEFAULT '0.00000', `ExteriorY` float(10,5) NOT NULL DEFAULT '0.00000', `ExteriorZ` float(10,5) NOT NULL DEFAULT '0.00000', `ExteriorR` float(10,5) NOT NULL DEFAULT '0.00000', `InteriorX` float(10,5) NOT NULL DEFAULT '0.00000', `InteriorY` float(10,5) NOT NULL DEFAULT '0.00000', `InteriorZ` float(10,5) NOT NULL DEFAULT '0.00000', `InteriorR` float(10,5) NOT NULL DEFAULT '0.00000', `ExtIW` int(11) NOT NULL DEFAULT '0', `ExtVW` int(11) NOT NULL DEFAULT '0', `IntIW` int(11) NOT NULL DEFAULT '9', `IntVW` int(11) NOT NULL DEFAULT '0', `Lock` int(11) NOT NULL DEFAULT '0', `Rentable` int(11) NOT NULL DEFAULT '0', `RentFee` int(11) NOT NULL DEFAULT '0', `Value` int(11) NOT NULL DEFAULT '0', `SafeMoney` int(11) NOT NULL DEFAULT '0', `Pot` int(11) NOT NULL DEFAULT '0', `Crack` int(11) NOT NULL DEFAULT '0', `Materials` int(11) NOT NULL DEFAULT '0', `Weapons0` int(11) NOT NULL DEFAULT '0', `Weapons1` int(11) NOT NULL DEFAULT '0', `Weapons2` int(11) NOT NULL DEFAULT '0', `Weapons3` int(11) NOT NULL DEFAULT '0', `Weapons4` int(11) NOT NULL DEFAULT '0', `GLUpgrade` int(11) NOT NULL DEFAULT '0', `PickupID` int(11) NOT NULL DEFAULT '0', `CustomInterior` int(11) NOT NULL DEFAULT '0', `CustomExterior` int(11) NOT NULL DEFAULT '0', `ExteriorA` float(10,5) NOT NULL DEFAULT '0.00000', `InteriorA` float(10,5) NOT NULL DEFAULT '0.00000', `MailX` float(10,5) NOT NULL DEFAULT '0.00000', `MailY` float(10,5) NOT NULL DEFAULT '0.00000', `MailZ` float(10,5) NOT NULL DEFAULT '0.00000', `MailA` float(10,5) NOT NULL DEFAULT '0.00000', `MailType` tinyint(4) NOT NULL DEFAULT '0', `Heroin` int(11) NOT NULL DEFAULT '0', `ClosetX` float(10,5) NOT NULL DEFAULT '0.00000', `ClosetY` float(10,5) NOT NULL DEFAULT '0.00000', `ClosetZ` float(10,5) NOT NULL DEFAULT '0.00000', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5001 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of houses -- ----------------------------