]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blobdiff - tests/testdb.sql
Add table user_groups to testdb.sql.
[philipp/winterrodeln/wradmin.git] / tests / testdb.sql
index b9ac2cb59975804927486c3eb84c8419a82f0177..8c45773e8b45225ab462e4317fb4b8eaba536e99 100644 (file)
@@ -335,6 +335,32 @@ INSERT INTO `user` VALUES (504,'Johndoe','John Doe',':pbkdf2:sha512:30000:64:hvq
 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`
 --