20.01.2015, 23:44
Quote:
You can do something like this if you have a database structure on an SQL or text file:
Код:
CREATE TABLE IF NOT EXISTS `accounts` ( `id` int(11) NOT NULL AUTO_INCREMENT, ... `weapon` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE = InnoDB DEFAULT CHARSET = latin1 AUTO_INCREMENT = 1; |