24.09.2015, 17:19
Just delete the current database and use this and don't alter the table anymore is not needed.
Or you can put this lines on your gm.
Код:
CREATE TABLE IF NOT EXISTS `vehicles` ( `ID` int(11) AUTO_INCREMENT, `Owner` int(11) NOT NULL, `Model` int(6) NOT NULL, `PosX` float NOT NULL, `PosY` float NOT NULL, `PosZ` float NOT NULL, `VAngle` float NOT NULL, `ServerID` int(6) NOT NULL, PRIMARY KEY(`ID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;