# -------------------------------------------------------- # # Table structure for table 'aktionen' # CREATE TABLE aktionen ( id int(255) NOT NULL auto_increment, beschr varchar(255) NOT NULL, building_id int(255) DEFAULT '0' NOT NULL, time2do timestamp(14), sektor varchar(255) NOT NULL, was varchar(255) NOT NULL, PRIMARY KEY (id), UNIQUE id (id) ); # # Dumping data for table 'aktionen' # INSERT INTO aktionen VALUES ( '1', 'Ausbau', '1', '00000000000000', '1.1', 'ausbau1_2'); # -------------------------------------------------------- # # Table structure for table 'buildings' # CREATE TABLE buildings ( id int(255) NOT NULL auto_increment, name varchar(255) NOT NULL, platzbedarf int(255) DEFAULT '0' NOT NULL, Funktion varchar(255) NOT NULL, Wert varchar(255) DEFAULT 'undef' NOT NULL, PRIMARY KEY (id), UNIQUE id (id) ); # # Dumping data for table 'buildings' # INSERT INTO buildings VALUES ( '1', 'HQ1', '5', 'Kontrollzentrum', 'undef'); INSERT INTO buildings VALUES ( '2', 'Kas1', '3', 'Einheitenproduktion', '*1%'); INSERT INTO buildings VALUES ( '3', 'Sch1', '3', 'Waffenproduktion', '0_0_0_0'); INSERT INTO buildings VALUES ( '4', 'HQ2', '6', 'Kontrollzentrum & Turm', '+10%'); # -------------------------------------------------------- # # Table structure for table 'sektor' # CREATE TABLE sektor ( id varchar(255) NOT NULL, typ tinyint(1) DEFAULT '0' NOT NULL, platz tinyint(2) DEFAULT '0' NOT NULL, buildings varchar(255) DEFAULT '0' NOT NULL, einheiten varchar(255) NOT NULL, UNIQUE id (id) ); # # Dumping data for table 'sektor' # INSERT INTO sektor VALUES ( '1.1', '0', '15', '1', '50_1'); # -------------------------------------------------------- # # Table structure for table 'spieler' # CREATE TABLE spieler ( id int(255) NOT NULL auto_increment, sektoren varchar(255) DEFAULT 'sektor' NOT NULL, name varchar(255) DEFAULT 'name' NOT NULL, volk tinyint(1) DEFAULT '0' NOT NULL, aktionen varchar(255) DEFAULT '0' NOT NULL, login timestamp(14), Punkte int(255) DEFAULT '0' NOT NULL, PRIMARY KEY (id), UNIQUE id (id) ); # # Dumping data for table 'spieler' # INSERT INTO spieler VALUES ( '1', '1.1', 'pktm', '1', '0', '19700102010000', '0'); # -------------------------------------------------------- # # Table structure for table 'units' # CREATE TABLE units ( id int(255) DEFAULT '0' NOT NULL, name varchar(255) DEFAULT 'Unit' NOT NULL, att int(255) DEFAULT '20' NOT NULL, def int(255) DEFAULT '10' NOT NULL, def_cav int(255) DEFAULT '5' NOT NULL, geschw int(255) DEFAULT '7' NOT NULL ); # # Dumping data for table 'units' # INSERT INTO units VALUES ( '1', 'Standard-Einheit', '20', '10', '5', '7');