-- MariaDB dump 10.19-11.4.0-MariaDB, for Win64 (AMD64) -- -- Host: localhost Database: philer -- ------------------------------------------------------ -- Server version 11.4.0-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `f_file_rel` -- DROP TABLE IF EXISTS `f_file_rel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_file_rel` ( `id_file` int(6) NOT NULL DEFAULT 0, `id_group` int(6) NOT NULL DEFAULT 0, KEY `id_file` (`id_file`), KEY `id_group` (`id_group`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_file_rel` -- LOCK TABLES `f_file_rel` WRITE; /*!40000 ALTER TABLE `f_file_rel` DISABLE KEYS */; /*!40000 ALTER TABLE `f_file_rel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `f_files` -- DROP TABLE IF EXISTS `f_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_files` ( `id` int(6) NOT NULL AUTO_INCREMENT, `filename` varchar(64) NOT NULL DEFAULT '', `type` varchar(64) NOT NULL DEFAULT '', `cdate` date NOT NULL DEFAULT '0000-00-00', `dl` int(64) NOT NULL DEFAULT 0, `size` int(24) NOT NULL DEFAULT 0, `note` text DEFAULT NULL, `parent` int(4) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `filename` (`filename`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_files` -- LOCK TABLES `f_files` WRITE; /*!40000 ALTER TABLE `f_files` DISABLE KEYS */; INSERT INTO `f_files` VALUES (22,'heimam','d','2007-02-28',0,0,'Directory \r\n\r\nheimam',0); /*!40000 ALTER TABLE `f_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `f_groups` -- DROP TABLE IF EXISTS `f_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_groups` ( `id` int(6) NOT NULL AUTO_INCREMENT, `groupname` varchar(64) NOT NULL DEFAULT '', `cdate` date NOT NULL DEFAULT '0000-00-00', `note` text DEFAULT NULL, `valid` int(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `groupname` (`groupname`), UNIQUE KEY `id` (`id`), KEY `groups` (`groupname`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_groups` -- LOCK TABLES `f_groups` WRITE; /*!40000 ALTER TABLE `f_groups` DISABLE KEYS */; INSERT INTO `f_groups` VALUES (3,'heiMAM','2007-02-28','',1); /*!40000 ALTER TABLE `f_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `f_user_rel` -- DROP TABLE IF EXISTS `f_user_rel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_user_rel` ( `id_user` int(6) NOT NULL DEFAULT 0, `id_group` int(6) NOT NULL DEFAULT 0, UNIQUE KEY `id_user` (`id_user`,`id_group`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_user_rel` -- LOCK TABLES `f_user_rel` WRITE; /*!40000 ALTER TABLE `f_user_rel` DISABLE KEYS */; INSERT INTO `f_user_rel` VALUES (8,3); /*!40000 ALTER TABLE `f_user_rel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `f_users` -- DROP TABLE IF EXISTS `f_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `f_users` ( `id` int(6) NOT NULL AUTO_INCREMENT, `username` varchar(64) NOT NULL DEFAULT '', `password` varchar(64) NOT NULL DEFAULT '', `email` varchar(64) NOT NULL DEFAULT '', `cdate` date NOT NULL DEFAULT '0000-00-00', `notes` text DEFAULT NULL, `valid` int(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`), KEY `username` (`username`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `f_users` -- LOCK TABLES `f_users` WRITE; /*!40000 ALTER TABLE `f_users` DISABLE KEYS */; INSERT INTO `f_users` VALUES (8,'mam','mscmks','mam@heimam.at','2007-02-28','',1); /*!40000 ALTER TABLE `f_users` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2024-02-04 18:41:32