Making CAR system [MySQL] [Save Cars]
#4

Mysql Table

Код:
CREATE TABLE IF NOT EXISTS `cars` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `Model` int(11) NOT NULL,
  `LocationX` float NOT NULL,
  `LocationY` float NOT NULL,
  `LocationZ` float NOT NULL,
  `Angle` float NOT NULL,
  `Color1` int(11) NOT NULL,
  `Color2` int(11) NOT NULL,
  `Owner` text NOT NULL,
  `Description` text NOT NULL,
  `Value` int(11) NOT NULL,
  `License` text NOT NULL,
  `Owned` int(11) NOT NULL,
  `Lock` int(11) NOT NULL,
  `Mod0` int(11) NOT NULL,
  `Mod1` int(11) NOT NULL,
  `Mod2` int(11) NOT NULL,
  `Mod3` int(11) NOT NULL,
  `Mod4` int(11) NOT NULL,
  `Mod5` int(11) NOT NULL,
  `Mod6` int(11) NOT NULL,
  `Mod7` int(11) NOT NULL,
  `Mod8` int(11) NOT NULL,
  `Mod9` int(11) NOT NULL,
  `Donate` int(11) NOT NULL,
  `Fuel` int(11) NOT NULL,
  `TrunkWeapon1` int(11) NOT NULL,
  `TrunkAmmo1` int(11) NOT NULL,
  `TrunkWeapon2` int(11) NOT NULL,
  `TrunkAmmo2` int(11) NOT NULL,
  `TrunkWeapon3` int(11) NOT NULL,
  `TrunkAmmo3` int(11) NOT NULL,
  `TrunkWeapon4` int(11) NOT NULL,
  `TrunkAmmo4` int(11) NOT NULL,
  `TrunkArmour` float NOT NULL,
  `TrunkCounter` int(11) NOT NULL,
  `Alarm` int(11) NOT NULL,
  `TrunkDrugs` int(11) NOT NULL,
  `TrunkMats` int(11) NOT NULL,
  `Impounded` int(11) NOT NULL,
  `ImpoundedPrice` int(11) NOT NULL,
  `Insurance` int(11) NOT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2023 ;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Reply


Messages In This Thread
Making CAR system [MySQL] [Save Cars] - by dasto_fantasto - 16.07.2012, 18:42
Re: Making CAR system [MySQL] [Save Cars] - by Infinity90 - 16.07.2012, 18:46
Re: Making CAR system [MySQL] [Save Cars] - by leonardo1434 - 16.07.2012, 18:49
Re: Making CAR system [MySQL] [Save Cars] - by showarn - 04.07.2013, 09:18
Re: Making CAR system [MySQL] [Save Cars] - by Vince - 04.07.2013, 10:18

Forum Jump:


Users browsing this thread: 1 Guest(s)