-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: opensource_db
-- ------------------------------------------------------
-- 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=5 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 Software','software','design','Y'),(3,'ERP','ERP (Enterprise Resource Planning) Software','software','erp','Y'),(4,'HR','HR (Human Resource) Software','software','hr','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=243 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 (138,'','','',104),(142,'','','',106),(145,'','','',107),(146,'','','',105),(148,'','','',108),(152,'','','',109),(154,'','','',110),(156,'','','',103),(158,'','','',112),(161,'','','',113),(162,'','','',114),(167,'','','',115),(168,'','','',116),(171,'','','',117),(172,'','','',118),(181,'','','',120),(194,'','','',122),(195,'','','',121),(196,'','','',119),(199,'','','',124),(200,'','','',125),(201,'','','',123),(206,'','','',127),(208,'','','',128),(211,'','','',129),(213,'','','',126),(215,'','','',130),(218,'','','',131),(219,'','','',132),(222,'','','',134),(229,'','','',136),(232,'','','',135),(239,'','','',139),(240,'','','',138),(241,'','','',133),(242,'','','',137);
/*!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=293 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 (91,2,'desktop-mac','Desktop Mac',103),(90,3,'desktop-windows','Desktop Windows',103),(89,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),(96,3,'desktop-windows','Desktop Windows',112),(95,4,'desktop-linux','Desktop Linux',112),(97,2,'desktop-mac','Desktop Mac',112),(103,2,'desktop-mac','Desktop Mac',113),(102,3,'desktop-windows','Desktop Windows',113),(104,4,'desktop-linux','Desktop Linux',114),(105,3,'desktop-windows','Desktop Windows',114),(106,2,'desktop-mac','Desktop Mac',114),(107,4,'desktop-linux','Desktop Linux',115),(108,3,'desktop-windows','Desktop Windows',115),(109,4,'desktop-linux','Desktop Linux',116),(110,3,'desktop-windows','Desktop Windows',116),(111,2,'desktop-mac','Desktop Mac',116),(117,3,'desktop-windows','Desktop Windows',117),(116,4,'desktop-linux','Desktop Linux',117),(118,3,'desktop-windows','Desktop Windows',118),(160,3,'desktop-windows','Desktop Windows',119),(135,4,'desktop-linux','Desktop Linux',120),(136,3,'desktop-windows','Desktop Windows',120),(137,2,'desktop-mac','Desktop Mac',120),(157,4,'desktop-linux','Desktop Linux',121),(158,3,'desktop-windows','Desktop Windows',121),(159,2,'desktop-mac','Desktop Mac',121),(156,3,'desktop-windows','Desktop Windows',122),(168,3,'desktop-windows','Desktop Windows',123),(167,4,'desktop-linux','Desktop Linux',123),(165,2,'desktop-mac','Desktop Mac',124),(166,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',125),(169,2,'desktop-mac','Desktop Mac',123),(200,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',126),(177,4,'desktop-linux','Desktop Linux',127),(178,2,'desktop-mac','Desktop Mac',127),(185,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',128),(184,2,'desktop-mac','Desktop Mac',128),(183,3,'desktop-windows','Desktop Windows',128),(186,5,'on-premise-windows','On-Premise Windows',128),(197,2,'desktop-mac','Desktop Mac',129),(198,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',129),(196,3,'desktop-windows','Desktop Windows',129),(195,4,'desktop-linux','Desktop Linux',129),(202,3,'desktop-windows','Desktop Windows',130),(217,8,'andriod','Andriod',131),(216,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',131),(214,3,'desktop-windows','Desktop Windows',131),(215,2,'desktop-mac','Desktop Mac',131),(213,4,'desktop-linux','Desktop Linux',131),(218,4,'desktop-linux','Desktop Linux',132),(219,3,'desktop-windows','Desktop Windows',132),(220,2,'desktop-mac','Desktop Mac',132),(287,9,'iphone','iPhone',133),(286,8,'andriod','Andriod',133),(285,2,'desktop-mac','Desktop Mac',133),(284,3,'desktop-windows','Desktop Windows',133),(283,4,'desktop-linux','Desktop Linux',133),(233,3,'desktop-windows','Desktop Windows',134),(258,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',135),(251,2,'desktop-mac','Desktop Mac',136),(252,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',136),(250,3,'desktop-windows','Desktop Windows',136),(249,4,'desktop-linux','Desktop Linux',136),(291,2,'desktop-mac','Desktop Mac',137),(292,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',137),(290,3,'desktop-windows','Desktop Windows',137),(289,4,'desktop-linux','Desktop Linux',137),(277,2,'desktop-mac','Desktop Mac',139),(278,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',139),(276,3,'desktop-windows','Desktop Windows',139),(275,4,'desktop-linux','Desktop Linux',139),(279,4,'desktop-linux','Desktop Linux',138),(280,3,'desktop-windows','Desktop Windows',138),(281,2,'desktop-mac','Desktop Mac',138),(282,1,'cloud-sass-or-web-based','Cloud, SaaS, Web-Based',138),(288,10,'ipad','iPad',133);
/*!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=140 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'),(112,'ERP software','Accounting','Skrooge','skrooge','accounting','https://skrooge.org/','<p>Skrooge helps you keep track of your costs and income, categorise them, and generate reports. Transactions in a variety of formats can be imported (AFB120, QIF, CSV, MT940, OFX, QFX) Documents can be imported from a variety of apps (KMYMONEY, Microsoft Money, GNUCASH, GRISBI, HOMEBANK and MONEY MANAGER EX) With just one click, you may export transactions from all of your banks\' websites. Use external addons and save your favourite reports, graphs, filters, and sites.</p>','software',NULL,3.9,NULL,'','erp','',91,NULL,'P'),(113,'ERP software','Accounting','Akaunting','akaunting','accounting','https://akaunting.com/','<p>For small enterprises and freelancers, Akaunting is a free, open-source, and online accounting software. Akaunting provides all the tools you need to handle your money online, from invoicing to cost monitoring and accounting. Surprisingly, there are no further subscription fees or upgrade possibilities. It\'s completely free. There are numerous features included like Modern, user-friendly, and mobile-friendly UI, Lifetime updates, Reporting on a higher level, Management of customers and vendors, Billing and invoicing on a recurring basis, and Bulk actions and categorization.<br />When it comes to your money, you need to know that your information is safe and that no malware is misusing it. With Open Source software, you have complete privacy.</p>','software',NULL,3.7,NULL,'','erp','',91,NULL,'P'),(114,'ERP software','Accounting','GnuCash','gnucash','accounting','https://www.gnucash.org/','<p>GnuCash is free financial accounting software for individuals and small businesses that manage invoicing, bill payment, and payroll using a double-entry accounting technique. It is licensed under the GNU GPL. It was created to be simple to use while being durable and versatile. It allows you to keep track of your bank accounts, assets, earnings, and outgoings. It\'s as easy to use as a checkbook register, but it\'s designed to meet professional accounting standards, ensuring accurate reports and balanced accounts.</p>','software',NULL,4.6,NULL,'','erp','',91,NULL,'P'),(115,'ERP software','Accounting','Apache Ofbiz','apache-ofbiz','accounting','https://ofbiz.apache.org/','<p>Apache\'s OFBiz is an open-source enterprise resource planning (ERP) solution. It\'s a collection of business software that combines and automates many of a company\'s processes. To add bespoke capabilities, developers can expand or modify a standard architecture. OFBiz is an Apache Software Foundation top-level project. It\'s completely free, but you must host it yourself (or hire someone to do it). In addition to all of the core characteristics required for accounting software, it allows a developer to extend/enhance functionality while a Java-based online platform swiftly.</p>','software',NULL,4,NULL,'','erp','',91,NULL,'P'),(116,'ERP software','Accounting','iDempiere','idempiere','accounting','https://www.idempiere.org/','<p>iDempiere is an open-source ERP/CRM/SCM solution with a strong community behind it. The project emphasizes high-quality software, an open-source ideology, and a collaborative community of subject matter experts, implementors, developers, and end-users. iDempiere has a solid reputation for its high-quality architectural design, stability, extensive feature set, extensibility, and the open-source community\'s ongoing dedication to developing and improving the software with performant and innovative solutions.</p>','software',NULL,4.5,NULL,'','erp','',91,NULL,'P'),(117,'ERP software','Accounting','TurboCASH','turbocash','accounting','https://accounting.ning.com/','<p>TurboCASH is the most widely used free multi-company, multi-user accounting software in the world. Copy protection, annual licence fees, and compulsory support contracts are not present in TurboCASH, unlike other accounting software. General Ledger, Cashbook, Customers, Suppliers, Inventory, Report Writer, Point of Sale, Payroll, and eCommerce are among the TurboCASH modules. TurboCASH is designed to be a single-user desktop application. Journals and documents must be entered. You can add more users to your account. When you consider that the United States has something akin to 50 separate tax systems, TurboCASH can manage them all. Every user has the ability to obtain</p>','software',NULL,4,NULL,'','erp','',91,NULL,'P'),(118,'ERP software','Accounting','HomeBank','homebank','accounting','http://homebank.free.fr/en/','<p>\"Free, simple personal accounting for everyone,\" says HomeBank. It not only keeps track of your accounts but also assists you in analyzing your finances.<br />The HomeBank download is available in both 32-bit and 64-bit versions of Windows. The user interface of HomeBank is well-designed and even beautiful in a businesslike manner. It\'s simple to keep track of your online purchases, monthly bills, and other expenditures so you can begin saving right immediately. For example, the Vehicle Cost Report covers car payments and insurance and gasoline costs and usage. It\'s all adding up! But that\'s the point: with HomeBank\'s assistance, your money may also add up and balance out.</p>','software',NULL,4.2,NULL,'','erp','',91,NULL,'P'),(119,'Design software','Photoshop Alternate','Paint.NET','paint.net','photoshop-alternate','https://www.getpaint.net/index.html','<p><strong>Paint.Net </strong>is an open-source Photoshop alternative. Every function and user interface piece has been created to be intuitive and easy to pick up without any help. Paint.NET employs a tabbed document interface to make it easier to work with many images. Instead of a text description, the tabs display a live thumbnail of the image. It has a user interface that is both easy and innovative, with support for layers, limitless undo, special effects, and a range of helpful and powerful tools. Usually only found in professional software that is either pricey or difficult. You can think of them as a stack of transparency slides that form a single image when viewed all at once.</p>','software',NULL,4.2,NULL,'','design','',92,NULL,'P'),(120,'Design software','Photoshop Alternate','GIMP','gimp','photoshop-alternate','https://www.gimp.org/','<p><strong>GIMP (GNU Image Manipulation Program) </strong>is one of the most popular open source Photoshop alternatives. Because the functionality and user interface of Photoshop and GIMP are so similar, many people find switching from one to the other to be a simple process. GIMP can also open and edit Photoshop-specific PSD files.GIMP provides a variety of high-quality features that can easily compete with Photoshop\'s. Color correction tools, configurable brushes, gradients, and auto image enhancement tools are just a few of the professional capabilities available in GIMP, making it simple for users to create artwork from scratch and edit photos/images.All users, from beginners to advanced, can benefit from the in-depth tutorials. This makes it incredibly user-friendly, even for those who are unfamiliar with the open-source application.</p>','software',NULL,4.5,NULL,'','design','',92,NULL,'P'),(121,'Design software','Photoshop Alternate','Inkscape','inkscape','photoshop-alternate','https://inkscape.org/','<p><strong>Inkscape </strong>is a fantastic free Photoshop alternative, especially if you\'re looking to save money. Inkscape is a wonderful free Photoshop replacement, however it\'s probably more equivalent to Illustrator. There\'s also a free vector graphics editor included.Inkscape looks and feels extremely advanced, despite the fact that it is free. Intuitive sketching tools, the ability to import and export numerous file kinds, add-ons, and language support are just a few of its many features. It\'s ideal for making app and website icons, comic graphics, and logos. It is a good alternative for beginners because of its strong capabilities and user-friendly interface.</p>','software',NULL,3.9,NULL,'','design','',92,NULL,'P'),(122,'Design software','Photoshop Alternate','Pixia','pixia','photoshop-alternate','http://www.ne.jp/asahi/mighty/knight/index.html','<p><strong>Pixia </strong>is a popular open-source drawing tool in Japan. Pixia, like other freeware image editors, allows layer editing, selective undos, and a variety of brushes and tools for artists. It\'s also an excellent alternative to Photoshop if you\'re seeking a quick way to learn character sketching and basic 2D graphics.Because it lacks direction, Pixia does not win accolades for first impressions or friendly interfaces for new users. On the other hand, the pop-up options start to make more sense once you open a fresh canvas.</p>\r\n<p>For more exact editing, there\'s also a brush size label that shows the brush dimensions. In Pixa, changing brush sizes is likewise simple and quick. Even while it has a lot of functionality, it still lacks the polish and features that professional apps like Photoshop have. However, the price of nothing is quite appealing.</p>','software',NULL,3.5,NULL,'','design','',92,NULL,'P'),(123,'Design software','Photoshop Alternate','Krita','krita','photoshop-alternate','https://krita.org/en/','<p><strong>Krita </strong>is a free and open-source digital sketching and painting program aimed at painters, illustrators, matte and texture artists, and visual effects professionals.It\'s best suited for advanced users. Users with prior experience will find it straightforward because the interface is almost identical to that of Photoshop.<br />However, if you get the hang of it, this is a fantastic Photoshop alternative with a wealth of painting and design features.<br />Krita has been around for almost a decade and has recently experienced a surge in popularity. Krita also includes training materials to help you get started with your illustration job (or hobby). A dark theme has been included. It is also available for windows 32bit</p>','software',NULL,4.2,NULL,'','design','',92,NULL,'P'),(124,'Design software','Photoshop Alternate',' Seashore',' seashore','photoshop-alternate','https://sourceforge.net/projects/seashore/','<p>For Mac users, Seashore is a free, open-source photo-editing software.<br />You can either make a new image or change the existing image\'s width, height, resolution, and mode. It also includes a transparent backdrop setting. The tools are prominently presented on the center menu bar, while layers and picture data are displayed in the sidebar. The number of tools offered, on the other hand, was a letdown. While functional, the UI is unimpressive and in desperate need of a facelift. GIMP, TIFF, and GIF are the only file formats supported, which is a drawback because an application of this type should accept more. Only novice and beginning photographers who need to execute some basic tasks should use it.</p>','software',NULL,3,NULL,'','design','',92,NULL,'P'),(125,'Design software','Photoshop Alternate','Sumo','sumo','photoshop-alternate','https://sumo.app/','<p><strong>Sumo</strong> Paint and Sumo Photo are web-based open source photo editing applications.Sumo Photo has functionality similar to Lightroom. It includes most of Photoshop\'s best features, making it a kind of stand-in for some of Photoshop\'s features. Because it is browser-based, there are no installations necessary on your PC, and the UI is user-friendly. Because it is browser-based, you can use it on your mobile device. All of the typical capabilities, such as gradient fill, blur, smudge, line tools, and other tools found in Photoshop and Lightroom, are available for free. SumoPaint Pro has an offline installable version.</p>','software',NULL,4,NULL,'','design','',92,NULL,'P'),(126,'HR software','Time Tracking','Kimai','kimai','time-tracking','https://www.kimai.org/','<p><strong>Kimai </strong>is an open-source and free time-tracking application. The software\'s first version was made available in 2006. It\'s a cross-platform program because it\'s based on the web. It supports unlimited users and timesheet entries, allowing you to manage all of your teams/departments with a single, easy installation. Because it is built on a responsive design, you may access your timesheets from your mobile phone, tablet, or iPad.It also supports a wide range of languages, with the ability to add new ones with ease.</p>\r\n<ul>\r\n<li>Mange customer information </li>\r\n<li>Manage projects for each customers </li>\r\n<li>Manage activities for each project </li>\r\n<li>Generate invoice </li>\r\n<li>Export timesheets in different formats like xlsx, PDF, CSV, HTML etc </li>\r\n<li>Keep track of expenses </li>\r\n<li>LDAP integration and many more..</li>\r\n</ul>','software',NULL,4.6,NULL,'','hr','',93,NULL,'P'),(127,'HR software','Time Tracking','OpenProject','openproject','time-tracking','https://www.openproject.org/','<p><strong>OpenProject </strong>is a certified enterprise-ready open source project management software. Its Community Edition, free and licensed under the GPL v3, contains a wide range of functionality and plugins. One of the primary functions that are provided for free is time tracking.<br />In addition to time tracking, the community edition includes</p>\r\n<ul>\r\n<li>Project Planning and Scheduling.</li>\r\n<li>Project Planning and Scheduling</li>\r\n<li>Streamline Product Roadmaps</li>\r\n<li>Managing Tasks and Team Collaboration</li>\r\n<li>Enable Short Development Cycles</li>\r\n<li>Cost Control and Budgeting</li>\r\n<li>Tracking Bugs</li>\r\n<li>Centralized Project Information</li>\r\n</ul>\r\n<p>Open Project provides on-premise and cloud options for deployment.<br />The Community and Enterprise editions are self-hosted and can be installed using Docker Containers if you have a Docker Engine installed. OpenProject also provide the Enterpise Cloud hosting services.</p>','software',NULL,4.3,NULL,'','hr','',93,NULL,'P'),(128,'HR software','Time Tracking','eHour','ehour','time-tracking','https://ehour.nl/','<p><strong>eHour </strong>is a web-based, open-source time tracking tool. A standalone version, a.WAR file that you can deploy on your Tomcat server, and a hosted solution are all available for eHour. It supports multi-currency and localization.<br />It has the following characteristics:</p>\r\n<ul>\r\n<li>Multiple projects are created for each client.</li>\r\n<li>Assign the project to several users.</li>\r\n<li>Locking the timesheet</li>\r\n<li>Keep track of your holidays and calculate your pay.</li>\r\n<li>Produces in-depth reports on topics such as attendance and project management.</li>\r\n<li>Configure the authorization settings</li>\r\n</ul>\r\n<p>eHour makes tracking the time your employees spend on projects as straightforward and user-friendly as possible. Its robust reporting system assists you in creating the information you require, and its simpler timesheets make time tracking a breeze.</p>','software',NULL,4.3,NULL,'','hr','',93,NULL,'P'),(129,'HR software','Time Tracking','Anuko ','anuko','time-tracking','https://www.anuko.com/time-tracker/','<p><strong>Anuko </strong>Time Tracker is a web-based PHP application that is open source and easy to use for time tracking. Anuko Time Tracker includes the complete source code, which can be modified and used. Anyone with software development knowledge can make Anuko Time Tracker their own. For both organizations and freelancers, this easy time tracking tool would be ideal. It helps you keep track of how much time your employees, coworkers, and teammates spend on projects and tasks. It performs just as its name suggests. It requires a MySQL server and a web server such as Apache or IIS. Basic time monitoring tools are also accessible via a mobile device.</p>\r\n<ul>\r\n<li>To meet the demands of your company or team, Anuko Time Tracker has four user levels: Manager, Co-Manager, User, and Client.</li>\r\n<li>Full reports can be viewed online, downloaded as a spreadsheet or CSV file, and emailed directly from the Time Tracker interface.</li>\r\n<li>You can assign users to groups in Anuko Time Tracker to make it easier to use and manage time tracker users and create appropriate information.</li>\r\n<li>To create ready-to-submit billing invoices, you can insert each user\'s hourly rate, billing details, taxes, and discounts.</li>\r\n<li>Multi-language support</li>\r\n</ul>','software',NULL,4.3,NULL,'','hr','',93,NULL,'P'),(130,'HR software','Time Tracking','Baralga','baralga','time-tracking','https://baralga.github.io/','<p><strong>Baralga </strong>is a free and open-source time-tracking software for Windows that is simple to use. It\'s an excellent tool for keeping track of how much time you spend on each task. Baralga allows you to keep track of how much time you spend on various projects. You can either manually enter and edit project activity or keep track of the projects you\'re working on. When it comes to the user interface, it isn\'t very good.</p>\r\n<ul>\r\n<li>Time tracking</li>\r\n<li>Supports creation of multiple projects</li>\r\n<li>Keep a journal of your activities.</li>\r\n<li>Reports can be exported in a variety of formats, including Excel, CSV, and iCalendar.</li>\r\n<li>Add and update activities manually</li>\r\n<li>Use shortcuts to enter data quickly.</li>\r\n</ul>','software',NULL,3.9,NULL,'','hr','',93,NULL,'P'),(131,'HR software','Time Tracking','Pendulums','pendulums','time-tracking','https://pendulums.io/','<p><strong>Pendulums</strong>, a modern time tracking application, can help you manage and track your time more effectively. Pendulums is a free, open-source design for many users, including freelancers, small project teams, and even businesses. Users can create their web or desktop-based application and add functionality to make Pendulums better fit their needs. Source code is available on <a href=\"https://github.com/Swing-team/pendulums-web-client\" target=\"_blank\" rel=\"nofollow noopener\">GitHub </a>to download. Pendulums are simple to utilize for freelancing assignments, daily activities, and short and long-term initiatives. It offers an offline mode that lets users keep track of their time even when they are not connected to the internet. Data automatically syncs with the server once the connection is restored.</p>','software',NULL,4.2,NULL,'','hr','',93,NULL,'P'),(132,'HR software','Time Tracking','Cattr','cattr','time-tracking','','<p><strong>Cattr </strong>is a free and open-source time-tracking solution that works with your existing infrastructure. Thanks to features like built-in screenshot capture, project tracking, project progress, automated report production, and activity identification, it\'s a wonderful tool for taking your team\'s performance to the next level. Anyone can get the community version for free under the SSPL license. Forever.<br />On the dashboard, you can see how much time you spent on each activity, as well as a timeline and screenshots from your work.<br />You may better understand how your team works by producing performance reports for each team member. It\'s available in CSV, XLS, and PDF formats.</p>','software',NULL,4,NULL,'','hr','',93,NULL,'P'),(133,'ERP software','CRM','SuiteCRM ','suitecrm','crm','https://suitecrm.com/','<p>With the custom module, layout, and relationship development features, <strong>SuiteCRM </strong>manages sales, service, and marketing. This CRM also offers a real-time dashboard, which means that as new data comes in, new statistics provide greater insights into pipeline indicators, open project statuses, and cash flow. You can use it for simple or sophisticated projects because of its endless modular customizability and add-ons. It also runs on Windows, OS X, Ubuntu, Android, and iOS.<br />It\'s one of the most approachable open source systems on the market, with a minimal learning curve and a simple setup. It\'s also one of the most popular.</p>\r\n<p><strong>Drawbacks</strong></p>\r\n<p>The integrations and functionality in the free open source version aren\'t as advanced as those in the commercial editions. SuiteCRM does not integrate with ERP software. Thus it may not be the best option if you need to integrate your entire business process.</p>','software',NULL,4.3,NULL,'','erp','',94,NULL,'P'),(134,'ERP software','CRM','Odoo','odoo','crm','https://www.odoo.com/','<p><strong>Odoo\'s </strong>open-source development strategy is based on \'extensible architecture,\' with a component design that allows you to mix and combine functionalities. Odoo CRM\'s open-source Community Edition enables developers to provide top-notch usability across all apps. Odoo apps are seamlessly integrated, allowing you to automate your business processes and gain savings and benefits completely. There are also paid add-ons available.</p>\r\n<p><strong>Drawbacks</strong></p>\r\n<p>The Open Source version is a little harder to set up. The process of creating invoices is not simple, and reporting possibilities are limited.</p>','software',NULL,3.9,NULL,'','erp','',94,NULL,'P'),(135,'ERP software','CRM','OroCRM ','orocrm','crm','https://oroinc.com/','<p><span data-preserver-spaces=\"true\"><strong>OroCRM </strong>is one of the most versatile open-source CRM applications available. Open-Source, Enterprise Edition, and CRM Cloud are the three variants available. It provides features like</span></p>\r\n<ul>\r\n<li><span data-preserver-spaces=\"true\">Accounts and Contacts Management</span></li>\r\n<li><span data-preserver-spaces=\"true\">Leads and Opportunities Management </span></li>\r\n<li><span data-preserver-spaces=\"true\">360° View of Your Customer</span></li>\r\n<li><span data-preserver-spaces=\"true\">Sales and Marketing Performance Dashboards</span></li>\r\n<li><span data-preserver-spaces=\"true\">Reporting and Analytics Integration With 3rd-Party Platforms</span></li>\r\n</ul>\r\n<p><span data-preserver-spaces=\"true\">OroCRM is built on OroPlatform, which uses the PHP Symfony full-stack web framework, making it simple and flexible for developers to grasp the code and tailor apps to their own needs. The source code can be found on </span><a class=\"editor-rtfLink\" href=\"https://github.com/oroinc/crm\" target=\"_blank\" rel=\"nofollow noopener\"><span data-preserver-spaces=\"true\">Github</span></a><span data-preserver-spaces=\"true\">. Basic system requirements can be found <a href=\"https://doc.oroinc.com/backend/setup/system-requirements/\" target=\"_blank\" rel=\"nofollow noopener\">here</a></span></p>\r\n<p><span data-preserver-spaces=\"true\">You can easily integrate Google Data Studio dashboard, Mailchimp, Woocommerce, and a range of other third-party services.</span></p>\r\n<p><span data-preserver-spaces=\"true\">Drawbacks</span></p>\r\n<p><span data-preserver-spaces=\"true\">It\'s only available in English. Although the free version lacks some basic functionalities like support desk, they can still be customized and added with the help of developers.</span></p>','software',NULL,4.2,NULL,'','erp','',94,NULL,'P'),(136,'ERP software','CRM','X2CRM','x2crm','crm','https://reference.x2crm.com/download','<p><span data-preserver-spaces=\"true\"><strong>X2CRM </strong>Open Source is built to work on-premises or cloud environments like Amazon Web Services and Google Cloud Storage. It is based on the Yii framework for PHP. GitHub, SourceForge, and Bitnami are the three leading open-source community sites where you find X2CRM Open Source. Sales, Contact Management, Customer Service, Marketing, and Support are all included in the X2CRM Open Source package. The following are some of X2CRM\'s features:</span></p>\r\n<ul>\r\n<li><span data-preserver-spaces=\"true\">Work-flow Engine for Sales Processes</span></li>\r\n<li><span data-preserver-spaces=\"true\">Reporting Dashboard </span></li>\r\n<li><span data-preserver-spaces=\"true\">Contact Activity Management</span></li>\r\n<li><span data-preserver-spaces=\"true\">Reporting Dashboard </span></li>\r\n<li><span data-preserver-spaces=\"true\">User profiles pages, activity streams, and more</span></li>\r\n</ul>\r\n<p><span data-preserver-spaces=\"true\">For on-premise system requirements, please visit this <a href=\"https://reference.x2crm.com/download#block-yui_3_17_2_1_1531339479256_19733\" target=\"_blank\" rel=\"nofollow noopener\">link</a>.</span></p>\r\n<p><span data-preserver-spaces=\"true\"><strong>Drawbacks</strong>:</span></p>\r\n<p><span data-preserver-spaces=\"true\">Not most widely used.</span></p>','software',NULL,4.2,NULL,'','erp','',94,NULL,'P'),(137,'ERP software','CRM','Vtiger','vtiger','crm','','<p><span data-preserver-spaces=\"true\">With over 5 million downloads, <strong>Vtiger </strong>CRM is one of the most popular open source CRMs built on PHP. Vtiger includes a free cloud CRM, the Pilot edition, which is available indefinitely. You can manage your whole sales pipeline with the Pilot Edition without the fees and complexity of learning a full-featured CRM. The pilot edition has a lot of features and can handle up to 10 users and 3000 records.</span></p>\r\n<p><span data-preserver-spaces=\"true\">Some of the pilot edition features includes:</span></p>\r\n<ul>\r\n<li><span data-preserver-spaces=\"true\">Contact Management</span></li>\r\n<li><span data-preserver-spaces=\"true\">Contact Engagement</span></li>\r\n<li><span data-preserver-spaces=\"true\">Internal Collaboration</span></li>\r\n<li><span data-preserver-spaces=\"true\">Marketing</span></li>\r\n<li><span data-preserver-spaces=\"true\">Sales Pipeline</span></li>\r\n<li><span data-preserver-spaces=\"true\">Sales Enablement</span></li>\r\n<li><span data-preserver-spaces=\"true\">Helpdesk</span></li>\r\n<li><span data-preserver-spaces=\"true\">Project Management</span></li>\r\n</ul>\r\n<p><span data-preserver-spaces=\"true\">Plot Edition (Free), Starter Edition, Professional Edition, and Enterprise Edition are the four editions of Vtiger. To compare the features and pricing of all four editions, visit this <a href=\"https://www.vtiger.com/compare-editions/\" target=\"_blank\" rel=\"nofollow noopener\">page</a>.</span></p>\r\n<p><span data-preserver-spaces=\"true\">Please visit the <a href=\"https://community.vtiger.com/help/vtigercrm/administrators/installation.html\" target=\"_blank\" rel=\"nofollow noopener\">page </a>for system requirements.</span></p>\r\n<p><span data-preserver-spaces=\"true\"><strong>Drawbacks</strong>:</span></p>\r\n<p><span data-preserver-spaces=\"true\">When compared to its premium version, Vtiger\'s reporting functions are considerably low in open source. Vtiger also includes a significant learning curve, thus training your staff to effectively deploy the platform will take some time.</span></p>\r\n<p> </p>','software',NULL,4.3,NULL,'','erp','',94,NULL,'P'),(138,'ERP software','CRM','EspoCRM','espocrm','crm','https://www.espocrm.com/','<p><span data-preserver-spaces=\"true\">EspoCRM is a free, open-source, self-hosted web application with a lot of features built on PHP. This is one of the most flexible CRM\'s available in the market. The Advanced Pack\'s Business Process Management tool allows you to model and automate business processes. Users can follow a certain record using social activity streams. The records that a user creates or that are allocated to a user are automatically followed.</span></p>\r\n<p><span data-preserver-spaces=\"true\">The following are some of the features:</span></p>\r\n<ul>\r\n<li><span data-preserver-spaces=\"true\">Automated Sales</span></li>\r\n<li><span data-preserver-spaces=\"true\">Workflows for Customer Service</span></li>\r\n<li><span data-preserver-spaces=\"true\">Inventory Management</span></li>\r\n<li><span data-preserver-spaces=\"true\">Analytics</span></li>\r\n<li><span data-preserver-spaces=\"true\">Marketing Automation and more</span></li>\r\n</ul>\r\n<p>Please visit this <a href=\"https://www.espocrm.com/blog/server-configuration-for-espocrm/\" target=\"_blank\" rel=\"nofollow noopener\">link </a>for system requirements</p>\r\n<p><strong><span data-preserver-spaces=\"true\">Drawbacks:</span></strong><span data-preserver-spaces=\"true\"> Because there are few pre-defined third-party integrations, developers must spend time creating bespoke integrations.</span></p>','software',NULL,4.4,NULL,'','erp','',94,NULL,'P'),(139,'ERP software','CRM','CiviCRM','civicrm','crm','','<p><span data-preserver-spaces=\"true\"><strong>CiviCRM </strong>is an open-source project that develops software for charitable and civic groups. CiviCRM\'s software is a highly customizable web-based CRM developed on PHP and licensed under the GNU license.CiviCRM provides full-fledged CRM features like</span></p>\r\n<p> </p>\r\n<ul>\r\n<li><span data-preserver-spaces=\"true\">Contact Management</span></li>\r\n<li><span data-preserver-spaces=\"true\">Accounting Integration</span></li>\r\n<li><span data-preserver-spaces=\"true\">Case Management</span></li>\r\n<li><span data-preserver-spaces=\"true\">Advocacy Campaigns</span></li>\r\n<li><span data-preserver-spaces=\"true\">Reports</span></li>\r\n<li><span data-preserver-spaces=\"true\">Email Marketing etc.</span></li>\r\n</ul>\r\n<p>Please visit this <a href=\"https://docs.civicrm.org/installation/en/latest/general/requirements/\" target=\"_blank\" rel=\"nofollow noopener\">link </a>for system requirements.</p>\r\n<p><span data-preserver-spaces=\"true\"><strong>Drawbacks</strong>:</span></p>\r\n<p><span data-preserver-spaces=\"true\">Because it does not support the sales module, it may not meet your business demands. Customizing the entire sales life cycle is a time-consuming task.</span></p>','software',NULL,4,NULL,'','erp','',94,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=95 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'),(91,'Accounting','Accounting software records and processes accounting transactions in functional modules such as accounts payable, accounts receivable, journal, general ledger, payroll, and trial balance. It serves as a financial data management system','accounting','software','erp','ERP',3,'Y'),(92,'Photoshop Alternate','Photoshop is the best choice for graphic design software but charges a fee to everybody who wants to use it. Many free, open-source software alternatives to Photoshop are available, which may not have as many features as the Adobe Photoshop package. However still, they can handle your minor day-to-day work effectively.','photoshop-alternate','software','design','Design',1,'Y'),(93,'Time Tracking','Open Source Time-tracking service is a type of computer application that allows employees to track how much time they spend on specific jobs or projects for free of cost. Many small, mid-sized, including those that use freelancers and hourly labour, use the application to keep track of their employees time.','time-tracking','software','hr','HR',4,'Y'),(94,'CRM','The term \"open source\" refers to source code that is freely available to the public. This source code can be distributed, modified, and redistributed to fulfill the demands of users. Developers cooperate on Github and other platforms to fix bugs, add features, and alter existing ones. Customer support, pipeline management, market automation, and contact management are valuable elements of open source customer relationship management; nevertheless, there are significant distinctions between the two types to consider. We go over everything in detail here.','crm','software','erp','ERP',3,'Y');
/*!40000 ALTER TABLE `sub_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping routines for database 'opensource_db'
--
/*!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:10
|