landsandboat/sql/char_style.sql
2022-07-05 12:49:26 +03:00

18 lines
751 B
SQL

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
-- ----------------------------
-- Table structure for char_style
-- ----------------------------
DROP TABLE IF EXISTS `char_style`;
CREATE TABLE IF NOT EXISTS `char_style` (
`charid` int(10) unsigned NOT NULL,
`head` smallint(5) unsigned NOT NULL DEFAULT '0',
`body` smallint(5) unsigned NOT NULL DEFAULT '0',
`hands` smallint(5) unsigned NOT NULL DEFAULT '0',
`legs` smallint(5) unsigned NOT NULL DEFAULT '0',
`feet` smallint(5) unsigned NOT NULL DEFAULT '0',
`main` smallint(5) unsigned NOT NULL DEFAULT '0',
`sub` smallint(5) unsigned NOT NULL DEFAULT '0',
`ranged` smallint(5) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`charid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AVG_ROW_LENGTH=20;