SA-MP Forums Archive
MySQL help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: MySQL help (/showthread.php?tid=301936)



MySQL help - vent - 06.12.2011

How to delete the registration system and use only UCP based registration?
Currently i have:
pawn Код:
CREATE TABLE IF NOT EXISTS `kasutajainfo` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `kasutaja` varchar(24) DEFAULT NULL,
  `parool` varchar(40) DEFAULT NULL,
  `mangutunde` int(20) DEFAULT NULL,
  `raha` int(20) DEFAULT NULL,
  `IP` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;