INSERT INTO `user` VALUES (539,'Anonymous','','','','\0\0\0\0\0\0\0\0\0\0\0\0\0\0','','20080922211544','\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\0\0\0\0\0\0\0\0\0\0\0\0\0',NULL,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0\0\0\0\0\0\0\0\0\0\0\0\0\0',NULL,NULL);
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
+--
+-- Table structure for table `user_groups`
+--
+
+DROP TABLE IF EXISTS `user_groups`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `user_groups` (
+ `ug_user` int(10) unsigned NOT NULL DEFAULT 0,
+ `ug_group` varbinary(255) NOT NULL DEFAULT '',
+ `ug_expiry` varbinary(14) DEFAULT NULL,
+ PRIMARY KEY (`ug_user`,`ug_group`),
+ KEY `ug_group` (`ug_group`),
+ KEY `ug_expiry` (`ug_expiry`)
+) ENGINE=InnoDB DEFAULT CHARSET=binary;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `user_groups`
+--
+
+/*!40000 ALTER TABLE `user_groups` DISABLE KEYS */;
+INSERT INTO `user_groups` VALUES (504,'beauftragte',NULL);
+INSERT INTO `user_groups` VALUES (504,'sysop',NULL);
+/*!40000 ALTER TABLE `user_groups` ENABLE KEYS */;
+
--
-- Table structure for table `wrinncache`
--