You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.9 KiB
43 lines
1.9 KiB
14 years ago
|
DROP TABLE IF EXISTS `test_ag`.`clan_fight_list`;
|
||
|
CREATE TABLE `test_ag`.`clan_fight_list` (
|
||
|
`id` int(13) NOT NULL auto_increment,
|
||
|
`clan` int(13) NOT NULL,
|
||
|
`gclan` int(13) NOT NULL,
|
||
|
`fighter` varchar(150) character set latin1 NOT NULL,
|
||
|
`gfighter` varchar(150) character set latin1 NOT NULL,
|
||
|
`clanfighttyp` int(13) NOT NULL,
|
||
|
`numberoffighter` int(13) NOT NULL,
|
||
|
`zeitpunkt` varchar(10) collate utf8_unicode_ci NOT NULL,
|
||
|
`status` int(5) NOT NULL,
|
||
|
`score_set` smallint(1) NOT NULL default '0',
|
||
|
PRIMARY KEY (`id`)
|
||
|
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;
|
||
|
|
||
|
DROP TABLE IF EXISTS `test_ag`.`clan_fights`;
|
||
|
CREATE TABLE `test_ag`.`clan_fights` (
|
||
|
`id` int(13) unsigned NOT NULL auto_increment,
|
||
|
`hp1` varchar(255) collate utf8_unicode_ci NOT NULL,
|
||
|
`hp2` varchar(255) collate utf8_unicode_ci NOT NULL,
|
||
|
`mp1` varchar(255) collate utf8_unicode_ci NOT NULL,
|
||
|
`mp2` varchar(255) collate utf8_unicode_ci NOT NULL,
|
||
|
`attacke1` text collate utf8_unicode_ci NOT NULL,
|
||
|
`attacke2` text collate utf8_unicode_ci NOT NULL,
|
||
|
`schaden1` text collate utf8_unicode_ci NOT NULL,
|
||
|
`schaden2` text collate utf8_unicode_ci NOT NULL,
|
||
|
`char1` int(20) NOT NULL default '0',
|
||
|
`char2` int(20) NOT NULL default '0',
|
||
|
`starke1` text collate utf8_unicode_ci NOT NULL,
|
||
|
`ver1` text collate utf8_unicode_ci NOT NULL,
|
||
|
`speed1` text collate utf8_unicode_ci NOT NULL,
|
||
|
`starke2` text collate utf8_unicode_ci NOT NULL,
|
||
|
`ver2` text collate utf8_unicode_ci NOT NULL,
|
||
|
`speed2` text collate utf8_unicode_ci NOT NULL,
|
||
|
`ausdauer1` varchar(255) collate utf8_unicode_ci NOT NULL,
|
||
|
`ausdauer2` varchar(255) collate utf8_unicode_ci NOT NULL,
|
||
|
`clanfight_id` int(20) NOT NULL default '0',
|
||
|
`runde` int(20) NOT NULL default '0',
|
||
|
`kampf` int(10) NOT NULL default '0',
|
||
|
`win` int(10) NOT NULL,
|
||
|
`lose` int(10) NOT NULL,
|
||
|
PRIMARY KEY (`id`)
|
||
|
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|