landsandboat/sql/char_style.sql

26 lines
No EOL
897 B
SQL

/*
MySQL Data Transfer
Source Host: localhost
Source Database: tpzdb
Target Host: localhost
Target Database: tpzdb
Date: 03/05/2015 09:21:00 PM
*/
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=MyISAM DEFAULT CHARSET=utf8 AVG_ROW_LENGTH=20;