-- MariaDB dump 10.19-11.4.0-MariaDB, for Win64 (AMD64) -- -- Host: localhost Database: zomplog -- ------------------------------------------------------ -- 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 `zomplog_cat` -- DROP TABLE IF EXISTS `zomplog_cat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `zomplog_cat` ( `id` int(5) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `permissions` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zomplog_cat` -- LOCK TABLES `zomplog_cat` WRITE; /*!40000 ALTER TABLE `zomplog_cat` DISABLE KEYS */; /*!40000 ALTER TABLE `zomplog_cat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zomplog_comments` -- DROP TABLE IF EXISTS `zomplog_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `zomplog_comments` ( `id` int(10) NOT NULL AUTO_INCREMENT, `entry_id` int(10) NOT NULL DEFAULT 0, `name` varchar(100) NOT NULL DEFAULT '', `comment` text NOT NULL, `date` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zomplog_comments` -- LOCK TABLES `zomplog_comments` WRITE; /*!40000 ALTER TABLE `zomplog_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `zomplog_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zomplog_db` -- DROP TABLE IF EXISTS `zomplog_db`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `zomplog_db` ( `id` int(10) NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL DEFAULT '', `text` text NOT NULL, `extended` text NOT NULL, `image` text NOT NULL, `catid` int(10) NOT NULL DEFAULT 0, `date` varchar(25) NOT NULL DEFAULT '', `username` text NOT NULL, `userid` int(10) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zomplog_db` -- LOCK TABLES `zomplog_db` WRITE; /*!40000 ALTER TABLE `zomplog_db` DISABLE KEYS */; /*!40000 ALTER TABLE `zomplog_db` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zomplog_users` -- DROP TABLE IF EXISTS `zomplog_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `zomplog_users` ( `id` int(5) NOT NULL AUTO_INCREMENT, `login` varchar(15) DEFAULT '0', `password` varchar(15) DEFAULT '0', `permissions` int(10) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zomplog_users` -- LOCK TABLES `zomplog_users` WRITE; /*!40000 ALTER TABLE `zomplog_users` DISABLE KEYS */; INSERT INTO `zomplog_users` VALUES (1,'admin','mscmks',1); /*!40000 ALTER TABLE `zomplog_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 2026-08-01 2:00:35