-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: teleguides_osc
-- ------------------------------------------------------
-- Server version 10.6.16-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 `categories`
--
DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`description` varchar(120) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`type` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`path` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
`is_active` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `type_path` (`type`,`path`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories`
--
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'Design','Design Category','software','design','Y');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `features`
--
DROP TABLE IF EXISTS `features`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `features` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group` varchar(45) DEFAULT NULL,
`attr` varchar(45) DEFAULT NULL,
`value` text DEFAULT NULL,
`product_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `fk_filters_products1_idx` (`product_id`),
CONSTRAINT `fk_filters_products10` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=155 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `features`
--
LOCK TABLES `features` WRITE;
/*!40000 ALTER TABLE `features` DISABLE KEYS */;
INSERT INTO `features` VALUES (132,'','','',103),(138,'','','',104),(142,'','','',106),(145,'','','',107),(146,'','','',105),(148,'','','',108),(152,'','','',109),(154,'','','',110);
/*!40000 ALTER TABLE `features` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `filters`
--
DROP TABLE IF EXISTS `filters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `filters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`group` varchar(45) DEFAULT NULL,
`attr` varchar(45) DEFAULT NULL,
`value` varchar(45) DEFAULT NULL,
`product_id` int(11) NOT NULL,
PRIMARY KEY (`id`,`product_id`),
KEY `fk_filters_products1_idx` (`product_id`),
CONSTRAINT `fk_filters_products1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `filters`
--
LOCK TABLES `filters` WRITE;
/*!40000 ALTER TABLE `filters` DISABLE KEYS */;
/*!40000 ALTER TABLE `filters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `platform_types`
--
DROP TABLE IF EXISTS `platform_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `platform_types` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uri` varchar(100) DEFAULT NULL,
`platform` varchar(50) DEFAULT '0',
`is_active` char(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `platform_types`
--
LOCK TABLES `platform_types` WRITE;
/*!40000 ALTER TABLE `platform_types` DISABLE KEYS */;
INSERT INTO `platform_types` VALUES (4,'desktop-linux','Desktop Linux','Y'),(3,'desktop-windows','Desktop Windows','Y'),(2,'desktop-mac','Desktop Mac','Y'),(1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based','Y'),(5,'on-premise-windows','On-Premise Windows','Y'),(6,'on-premise-linux','On-Premise Linux','0'),(7,'desktop-chromebook','Desktop Chromebook','0'),(8,'andriod','Andriod','Y'),(9,'iphone','iPhone','Y'),(10,'ipad','iPad','Y'),(11,'chrome-os','Chrome OS','Y');
/*!40000 ALTER TABLE `platform_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `platforms`
--
DROP TABLE IF EXISTS `platforms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `platforms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`platform_id` int(11) NOT NULL DEFAULT 0,
`platform_uri` varchar(100) DEFAULT NULL,
`platform` varchar(50) NOT NULL DEFAULT '0',
`product_id` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `platform_fk1` (`platform_id`),
KEY `product_fk1` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=89 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `platforms`
--
LOCK TABLES `platforms` WRITE;
/*!40000 ALTER TABLE `platforms` DISABLE KEYS */;
INSERT INTO `platforms` VALUES (29,2,'desktop-mac','Desktop Mac',103),(28,3,'desktop-windows','Desktop Windows',103),(27,4,'desktop-linux','Desktop Linux',103),(44,3,'desktop-windows','Desktop Windows',104),(61,4,'desktop-linux','Desktop Linux',105),(62,3,'desktop-windows','Desktop Windows',105),(63,2,'desktop-mac','Desktop Mac',105),(64,11,'chrome-os','Chrome OS',105),(57,3,'desktop-windows','Desktop Windows',106),(56,4,'desktop-linux','Desktop Linux',106),(58,2,'desktop-mac','Desktop Mac',106),(60,4,'desktop-linux','Desktop Linux',107),(69,3,'desktop-windows','Desktop Windows',108),(68,4,'desktop-linux','Desktop Linux',108),(70,2,'desktop-mac','Desktop Mac',108),(80,4,'desktop-linux','Desktop Linux',109),(81,3,'desktop-windows','Desktop Windows',109),(82,2,'desktop-mac','Desktop Mac',109),(87,3,'desktop-windows','Desktop Windows',110),(86,4,'desktop-linux','Desktop Linux',110),(88,2,'desktop-mac','Desktop Mac',110);
/*!40000 ALTER TABLE `platforms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `products`
--
DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`category` varchar(45) DEFAULT NULL,
`sub_category` varchar(45) DEFAULT NULL,
`name` varchar(80) DEFAULT NULL,
`uri` varchar(150) DEFAULT NULL,
`sub_cat_path` varchar(255) DEFAULT NULL,
`website` varchar(255) DEFAULT NULL,
`description` text DEFAULT NULL,
`type` varchar(45) DEFAULT NULL COMMENT 'Software (or) Service',
`pricing` varchar(45) DEFAULT NULL,
`rating` float DEFAULT NULL COMMENT '4 star or 5 star etc',
`platform` varchar(45) DEFAULT NULL COMMENT 'Cloud, SAAS, windows, max os, Linux etc',
`pros` text DEFAULT NULL,
`category_uri` varchar(255) DEFAULT NULL,
`cons` text DEFAULT NULL,
`sub_category_id` int(11) NOT NULL,
`alternatives` varchar(45) DEFAULT NULL,
`status` char(1) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uri` (`uri`),
KEY `fk_products_sub_categories1_idx` (`sub_category_id`),
KEY `fk_products_categories1` (`category_uri`(191))
) ENGINE=InnoDB AUTO_INCREMENT=111 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `products`
--
LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
INSERT INTO `products` VALUES (103,'Design software','Video Editing','Kdenlive','kdenlive','video-editing','https://kdenlive.org/','Kdenlive is an excellent Linux video editing tool based on the MLT media framework. The user interface is simple and intuitive, and it will look most familiar to those who have used iMovie. It has a robust set of transitions, effects, and filters that are simple to drag over clips, alter their settings, and evaluate in real time. When you\'re ready to export your final video, you have a variety of file types and presets to pick from.','software',NULL,3.5,'On-Premise Windows','','design','',90,NULL,'P'),(104,'Design software','Video Editing','Shotcut','shotcut','video-editing','https://shotcut.org/','Shotcut is a free and open-source video editor and encoder that supports a variety of media types. It\'s compatible with JACK Audio and Melted Server technologies, and it even has a GPU Processing capability that\'s still in beta. Users can develop and distribute new translations, which are available in several languages. Shotcut\'s user interface is busy but well-organized, with the kind of efficiency and refinement that comes from products that many people have well tested. Shotcut was tested on Windows 7 Home Premium SP1 64-bit.','software',NULL,4.5,NULL,'','design','',90,NULL,'P'),(105,'Design software','Video Editing','OpenShot','openshot','video-editing','https://www.openshot.org/','OpenShot is a free and open-source video editor for Windows, Mac OS X, and Linux. Rather having each track being a specific “video track” or “audio track,” you can add an unlimited number of tracks. You can drag and drop to deal with the clips on the timeline and place any sort of media into any track. 3D animated titles, which OpenShot can handle if you\'ve installed the 3D-graphics software Blender, are a feature you won\'t find in many other free products.','software',NULL,4.2,NULL,'','design','',90,NULL,'P'),(106,'Design software','Video Editing','Blender','blender','video-editing','https://www.blender.org/','Blender has a well-designed interface with various tools that allow you to produce professional-quality animations and 3D models. 3D Unwrapping, Shading, Physics and Particles, Real-Time 3D/Game Creation, and much more are all available. Mastering how to use all of the features and get the most out of the program takes a significant amount of time. It comes with a plethora of tools, and its user interface makes accomplishing all jobs simple and efficient.','software',NULL,4.5,NULL,'','design','',90,NULL,'P'),(107,'Design software','Video Editing','Flowblade ','flowblade','video-editing','https://jliljebl.github.io/flowblade/index.html','At the time of writing, Flowblade did not have Mac or Windows versions. It focuses on giving Linux users a quick and stable video editing experience. It accomplishes a faster loading and operating experience than most of the other editing tools. It also uses the numerous effects accessible to Linux video editors, including transitions, image filters, custom titles, and keyframe-based audio editing. Flowblade\'s modern-looking interface should be familiar and intuitive to many users with timeline tool buttons that fit on one row.','software',NULL,4.2,NULL,'','design','',90,NULL,'P'),(108,'Design software','Video Editing','Avidemux','avidemux','video-editing','http://avidemux.sourceforge.net/','Avidemux isn\'t trying to be a full-fledged video editor with a timeline. Instead, it\'s intended for quick updates and the output of a modified file. You can import your source video and select start and end frames to chop out segments. It can encode video and audio to a wide range of file formats as part of the exporting process. It can even add more clips to the conclusion of your current one, but that kind of work is probably better left to a full non-linear editor.','software',NULL,4.3,NULL,'','design','',90,NULL,'P'),(109,'Design software','Video Editing','VidCutter','vidcutter','video-editing','https://github.com/ozmartian/vidcutter','Most common formats, including as AVI, MOV, MP4, and others, can be imported and exported using VidCutter. Your imported media is displayed in a preview section, and thumbnails can be seen on a single-track timeline at the bottom. Your selection will be added to the clip index after you mark start and stop points on the timeline. Your clips will be exported to a file in that order when you save the video, and the new file will match the source\'s video format. It\'s a good idea to start with free, open-source software.','software',NULL,2.9,NULL,'','design','',90,NULL,'P'),(110,'Design software','Video Editing','Natron ','natron','video-editing','https://natrongithub.github.io/','Natron is a VFX and motion graphics compositing tool that runs on all platforms. A succession of \"nodes\" is used to create effects in Natron. You specify and edit the effects\' details on a node before applying them to a video clip. Once your shot is complete, you can use another video editing or sequencing program to include it in a longer video. It\'s a great open-source approach to get into another part of video creation.','software',NULL,4,NULL,'','design','',90,NULL,'P');
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `sub_categories`
--
DROP TABLE IF EXISTS `sub_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sub_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sub_category` varchar(45) DEFAULT NULL,
`description` text DEFAULT NULL,
`path` varchar(255) DEFAULT NULL,
`type` varchar(50) DEFAULT NULL,
`cat_path` varchar(255) DEFAULT NULL,
`category` varchar(45) DEFAULT NULL,
`category_id` int(11) NOT NULL,
`is_active` char(1) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `fk_sub_categories_categories_idx` (`category_id`),
CONSTRAINT `fk_sub_categories_categories` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `sub_categories`
--
LOCK TABLES `sub_categories` WRITE;
/*!40000 ALTER TABLE `sub_categories` DISABLE KEYS */;
INSERT INTO `sub_categories` VALUES (90,'Video Editing','By using these tools/software, you can add some visual effects, audio effects, and change lighting, etc., and you export these modified video clips in your desired format.','video-editing','software','design','Design',1,'Y');
/*!40000 ALTER TABLE `sub_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping routines for database 'teleguides_osc'
--
/*!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 2023-12-18 16:31:20
|