main
parent
3409713f37
commit
5aede0ef6b
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>db</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
</natures>
|
||||
</projectDescription>
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,43 @@
|
||||
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;
|
Loading…
Reference in new issue