-- MariaDB dump 10.19  Distrib 10.11.14-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost    Database: groupbuy
-- ------------------------------------------------------
-- Server version	10.11.14-MariaDB-0ubuntu0.24.04.1

/*!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 `Category`
--

DROP TABLE IF EXISTS `Category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `Category` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `slug` varchar(191) NOT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `Category_name_key` (`name`),
  UNIQUE KEY `Category_slug_key` (`slug`),
  KEY `Category_slug_idx` (`slug`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Category`
--

LOCK TABLES `Category` WRITE;
/*!40000 ALTER TABLE `Category` DISABLE KEYS */;
INSERT INTO `Category` VALUES
(1,'SEO','seo','2026-08-01 20:04:33.682','2026-08-01 20:04:33.682'),
(2,'Content Writing','content-writing','2026-08-01 20:04:33.689','2026-08-01 20:04:33.689'),
(3,'Graphic Design','graphic-design','2026-08-01 20:04:33.692','2026-08-01 20:04:33.692'),
(4,'Amazon Seller','amazon-seller','2026-08-01 20:04:33.695','2026-08-01 20:04:33.695'),
(5,'Wordpress & Plugins','wordpress-plugins','2026-08-01 20:04:33.697','2026-08-01 20:04:33.697'),
(6,'Skills','skills','2026-08-01 20:04:33.699','2026-08-01 20:04:33.699'),
(7,'Addon','addon','2026-08-01 20:04:33.702','2026-08-01 20:04:33.702'),
(8,'Private','private','2026-08-01 20:04:33.703','2026-08-01 20:04:33.703');
/*!40000 ALTER TABLE `Category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `Faq`
--

DROP TABLE IF EXISTS `Faq`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `Faq` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `question` varchar(191) NOT NULL,
  `answer` text NOT NULL,
  `sortOrder` int(11) NOT NULL DEFAULT 0,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `Faq_sortOrder_idx` (`sortOrder`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Faq`
--

LOCK TABLES `Faq` WRITE;
/*!40000 ALTER TABLE `Faq` DISABLE KEYS */;
INSERT INTO `Faq` VALUES
(1,'How fast will I get access after purchase?','We provide fast access as soon as you purchase service from us. However, the exact timing can depend on the specific tool or package, but we always try to keep delivery as fast as possible.',1,'2026-08-01 20:04:33.804','2026-08-01 20:04:33.804'),
(2,'Can I buy a single tool instead of a full package?','Yes. You can choose from our single tools section if you only need one specific product like ChatGPT, SEMRush, Canva Pro, or other premium tools.',2,'2026-08-01 20:04:33.804','2026-08-01 20:04:33.804'),
(3,'How can I cancel my subscription?','You can cancel your subscription anytime by contacting our support team. Cancellation stops future access or renewal, but it does not automatically qualify for a refund.',3,'2026-08-01 20:04:33.804','2026-08-01 20:04:33.804'),
(4,'Can I switch plans later?','Yes, you can upgrade or switch your plan later based on availability. Contact our support team and we will guide you with the price difference, validity, and access changes.',4,'2026-08-01 20:04:33.804','2026-08-01 20:04:33.804'),
(5,'Do you offer refunds?','Our service is non-refundable because we pay ongoing subscription, maintenance, and server costs to keep premium tools affordable for everyone. Since this is a group-buy service, temporary downtime, login issues, tool updates, or tool removal due to technical problems are not eligible for a refund.',5,'2026-08-01 20:04:33.804','2026-08-01 20:04:33.804'),
(6,'Are the tools original premium tools?','Yes, we provide access to real premium tools through a managed group-buy system. Availability, access method, and features may vary depending on each tool\'s rules and technical limitations.',6,'2026-08-01 20:04:33.804','2026-08-01 20:04:33.804'),
(7,'Do you provide support if I face an issue?','Yes. We provide active support and try to reply quickly. If there is any tool-related or access-related issue, our team will help you solve it through Live Chat, Messenger, or WhatsApp.',7,'2026-08-01 20:04:33.804','2026-08-01 20:04:33.804');
/*!40000 ALTER TABLE `Faq` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `Order`
--

DROP TABLE IF EXISTS `Order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `Order` (
  `id` varchar(191) NOT NULL,
  `itemType` varchar(191) NOT NULL,
  `toolId` int(11) DEFAULT NULL,
  `planId` int(11) DEFAULT NULL,
  `name` varchar(191) NOT NULL,
  `email` varchar(191) NOT NULL,
  `whatsapp` varchar(191) NOT NULL,
  `note` text DEFAULT NULL,
  `status` varchar(191) NOT NULL DEFAULT 'pending',
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `Order_email_idx` (`email`),
  KEY `Order_status_idx` (`status`),
  KEY `Order_toolId_fkey` (`toolId`),
  KEY `Order_planId_fkey` (`planId`),
  CONSTRAINT `Order_planId_fkey` FOREIGN KEY (`planId`) REFERENCES `Plan` (`id`) ON DELETE SET NULL ON UPDATE CASCADE,
  CONSTRAINT `Order_toolId_fkey` FOREIGN KEY (`toolId`) REFERENCES `Tool` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Order`
--

LOCK TABLES `Order` WRITE;
/*!40000 ALTER TABLE `Order` DISABLE KEYS */;
/*!40000 ALTER TABLE `Order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `Plan`
--

DROP TABLE IF EXISTS `Plan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `Plan` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `slug` varchar(191) NOT NULL,
  `price` int(11) NOT NULL,
  `period` varchar(191) NOT NULL DEFAULT 'Month',
  `features` text NOT NULL,
  `group` varchar(191) NOT NULL DEFAULT 'professional',
  `isPopular` tinyint(1) NOT NULL DEFAULT 0,
  `showOnHome` tinyint(1) NOT NULL DEFAULT 0,
  `sortOrder` int(11) NOT NULL DEFAULT 0,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `Plan_slug_key` (`slug`),
  KEY `Plan_slug_idx` (`slug`),
  KEY `Plan_group_sortOrder_idx` (`group`,`sortOrder`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Plan`
--

LOCK TABLES `Plan` WRITE;
/*!40000 ALTER TABLE `Plan` DISABLE KEYS */;
INSERT INTO `Plan` VALUES
(1,'Semrush + Ubersuggest','semrush-ubersuggest',350,'Month','Access 2 Premium Tools\nRegular Updates & Maintenance\nUser-Friendly Instant Dashboard\nPremium Support','mini-combo',0,0,1,'2026-08-01 20:04:33.780','2026-08-01 20:04:33.780'),
(2,'ChatGPT + Hix Bypass + Grmmarly','chatgpt-hix-bypass-grmmarly',500,'Month','Access 3 Premium Tools\nRegular Updates & Maintenance\nUser-Friendly Instant Dashboard\nPremium Support','mini-combo',0,0,2,'2026-08-01 20:04:33.782','2026-08-01 20:04:33.782'),
(3,'1 Day Trial - Premium Plan','1-day-trial-premium-plan',100,'Month','Unlock Premium Plan for 24 Hours - 100+ High-Quality Tools\nRegular Updates & Maintenance\nPremium Support','mini-combo',0,0,3,'2026-08-01 20:04:33.784','2026-08-01 20:04:33.784'),
(4,'MidJourney + Ideogram','midjourney-ideogram',400,'Month','Access 2 Premium Tools\nRegular Updates & Maintenance\nUser-Friendly Instant Dashboard\nPremium Support','mini-combo',0,0,4,'2026-08-01 20:04:33.785','2026-08-01 20:04:33.785'),
(5,'Desginer Plan','desginer-plan',590,'Month','Access 50+ Premium Designing & Video Editing Tools\nUnlimited Stock Photos & Vectors\nIncludes Caanva Pro, Freeepik, Envaato Eleements etc\nPremium Video Templates & Assets\nAI Art & Image Generators Included\nDaily Updated New Resources\nBonus: RunwayML, VistaCreate, PhotoRoom, Vidyard, Audiio, Epidemic Sound, Prezi, SlideShare, Dropbox, Steve AI, Lovo AI, Beautiful.ai & Pixlr.\nPremium Support','professional',0,1,5,'2026-08-01 20:04:33.788','2026-08-01 20:04:33.788'),
(6,'Premium Plan','premium-plan',799,'Month','Unlock 100+ High-Quality Tools\nEverything in Basic Plan\nEverything in Standard Plan\nEverything in SEO Plan\nEverything in Content Plan\nEverything in Graphic Plan\nEverything in Learning Plan\nBonus: Cramly, Coda AI, Miror, RunwayML, VistaCreate, PhotoRoom, Vidyard, Audiio Stock, Epidemic Sound, Prezi, SlideShare, Dropbox, Steve AI, Lovo AI, Beautiful.ai, Pixlr\nRegular Updates & Maintenance\nPremium Support\nGPT Image Generation','professional',1,1,6,'2026-08-01 20:04:33.790','2026-08-01 20:04:33.790'),
(7,'SEO Plan','seo-plan',590,'Month','Access 15+ Premium SEO Tools\nAdvanced Keyword Research & Audit\nCompetitor Analysis & Backlink Data\nRank Tracking Capabilities\nUnlimited Reports & Exports\nBonus: Woorank, BuzzStream, StoryBase, Sell The Trend, Seobility & SEO Site Checkup.\nPremium Support','professional',0,1,7,'2026-08-01 20:04:33.791','2026-08-01 20:04:33.791'),
(8,'Writer Plan','writer-plan',590,'Month','Access 20+ Premium Writing Tools\nAdvanced Grammar & Plagiarism Checkers\nAI Content & Copywriting Assistants\nSEO Article Optimization Tools\nParaphrasing & Rewriting Features\nBonus: Cramly, Coda AI, Taplio & Miro.\nPremium Support','professional',0,0,8,'2026-08-01 20:04:33.793','2026-08-01 20:04:33.793'),
(9,'Learning Plan','learning-plan',590,'Month','Access 15+ Premium Learning Tools\nUnlock Courses from Top Providers\nProfessional Skill Development & Certifications\nCoding, Business & Design Tutorials\nAccess to Exclusive Study Materials\nDaily Updated Course Library\nPremium Support','professional',0,0,9,'2026-08-01 20:04:33.795','2026-08-01 20:04:33.795'),
(10,'Basic Plan','basic-plan',500,'Month','Access 10+ Premium Tools\nPerfect for Students & Beginners\nRegular Updates & Maintenance\nPremium Support','professional',0,0,10,'2026-08-01 20:04:33.797','2026-08-01 20:04:33.797'),
(11,'Standard Plan','standard-plan',650,'Month','Access 50+ Premium Tools\nComplete Marketing & SEO Toolkit\nSocial Media Management Tools\nAdvanced Design & Video Editors\nUnlimited Stock Assets Access\nRegular Updates & Maintenance\nPremium Support','professional',0,0,11,'2026-08-01 20:04:33.798','2026-08-01 20:04:33.798'),
(12,'AI Plan','ai-plan',1499,'Month','ChatGPT - Unlimited Chats\nGemini - Unlimited Chats\nGrok AI - Unlimited Chats\nHix Bypass - Unlimited\nStealth Writer - Unlimited\nElevenlabs - Daily 5-8K Credits – Text to Speech\nPerplexity AI - Unlimited Chats\nMid Journey - Daily 30 Generation\nIdeogram - Unlimited\nCanva Pro - Own Mail Invitation\nTalking Photos - Unlimited\nArtistly - Unlimited','professional',0,0,12,'2026-08-01 20:04:33.800','2026-08-01 20:04:33.800');
/*!40000 ALTER TABLE `Plan` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `Tool`
--

DROP TABLE IF EXISTS `Tool`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `Tool` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `slug` varchar(191) NOT NULL,
  `price` int(11) NOT NULL,
  `period` varchar(191) NOT NULL DEFAULT 'Month',
  `features` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `iconUrl` varchar(191) DEFAULT NULL,
  `badge` varchar(191) DEFAULT NULL,
  `isPrivate` tinyint(1) NOT NULL DEFAULT 0,
  `isPopular` tinyint(1) NOT NULL DEFAULT 0,
  `showOnHome` tinyint(1) NOT NULL DEFAULT 0,
  `sortOrder` int(11) NOT NULL DEFAULT 0,
  `categoryId` int(11) DEFAULT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `Tool_slug_key` (`slug`),
  KEY `Tool_slug_idx` (`slug`),
  KEY `Tool_categoryId_idx` (`categoryId`),
  KEY `Tool_isPrivate_sortOrder_idx` (`isPrivate`,`sortOrder`),
  CONSTRAINT `Tool_categoryId_fkey` FOREIGN KEY (`categoryId`) REFERENCES `Category` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `Tool`
--

LOCK TABLES `Tool` WRITE;
/*!40000 ALTER TABLE `Tool` DISABLE KEYS */;
INSERT INTO `Tool` VALUES
(1,'SEMRush','semrush',350,'Month','✅ Ubersuggest Included\n🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase','SEMrush is a comprehensive SEO and digital marketing platform. This group-buy access plan provides a cost-effective way to use SEMrush capabilities through a shared, managed subscription.\n\nRun keyword research and competitive analysis, audit and monitor website SEO performance, track rank and backlink profiles, and use marketing and content tools available within the SEMrush suite.','https://assets.groupbuyservices.com/uploads/icons/8bcf0accfdcf1a7ba9f56330154ccf25.png','Best for Creators',0,1,1,1,1,'2026-08-01 20:04:33.707','2026-08-01 20:04:33.707'),
(2,'Indexification','indexification',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,'https://assets.groupbuyservices.com/uploads/icons/6e0607556fc2ee53b3b9c8f5348bcce1.png',NULL,0,0,1,2,1,'2026-08-01 20:04:33.711','2026-08-01 20:04:33.711'),
(3,'ChatGPT (Text + Image)','chgpt-shared',400,'Month','🚀 No Text limitations\n✅ Daily 10 Image Generation\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,'https://assets.groupbuyservices.com/uploads/icons/c386f012799429bd23176b64cd992632.png',NULL,0,0,1,3,2,'2026-08-01 20:04:33.714','2026-08-01 20:04:33.714'),
(4,'Grok AI (Only Text)','grok-ai',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,'https://assets.groupbuyservices.com/uploads/icons/32172ba21e1df6d5cfc8795841538913.png',NULL,0,0,1,4,2,'2026-08-01 20:04:33.715','2026-08-01 20:04:33.715'),
(5,'Quillbot','quillbot',400,'Month','🚀 No limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,'https://assets.groupbuyservices.com/uploads/icons/2811703761d0e2cb2018a6b715a3e802.png',NULL,0,0,1,5,2,'2026-08-01 20:04:33.718','2026-08-01 20:04:33.718'),
(6,'Hix Bypass','hix-bypass',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,'https://assets.groupbuyservices.com/uploads/icons/b3a92f8549dff0787ec6d8568761dea0.png',NULL,0,0,1,6,2,'2026-08-01 20:04:33.719','2026-08-01 20:04:33.719'),
(7,'NeuronWritter','neuronwritter',600,'Month','🚀 Monthly 30 Content Optimisation\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,'https://assets.groupbuyservices.com/uploads/icons/52345983689dbcfd416620efa9e7e411.png','Addon',0,0,1,7,2,'2026-08-01 20:04:33.722','2026-08-01 20:04:33.722'),
(8,'Envato Elements','envato-elements',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,8,3,'2026-08-01 20:04:33.725','2026-08-01 20:04:33.725'),
(9,'Ideogram','ideogram',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,9,3,'2026-08-01 20:04:33.727','2026-08-01 20:04:33.727'),
(10,'RenderForest','renderforest',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,10,3,'2026-08-01 20:04:33.728','2026-08-01 20:04:33.728'),
(11,'Iconscout','iconscout',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,11,3,'2026-08-01 20:04:33.731','2026-08-01 20:04:33.731'),
(12,'Motion Array','motion-array',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,12,3,'2026-08-01 20:04:33.733','2026-08-01 20:04:33.733'),
(13,'Picsart','picsart',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,13,3,'2026-08-01 20:04:33.734','2026-08-01 20:04:33.734'),
(14,'Vecteezy','vecteezy',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,14,3,'2026-08-01 20:04:33.735','2026-08-01 20:04:33.735'),
(15,'Story Block','story-block',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,15,3,'2026-08-01 20:04:33.737','2026-08-01 20:04:33.737'),
(16,'Kittl','kittl',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,16,3,'2026-08-01 20:04:33.738','2026-08-01 20:04:33.738'),
(17,'ElevenLabs - Daily 7K Credtis','elevenlabs-shared',600,'Month','🎙 Daily 7K Credits – Text to Speech\n🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,17,3,'2026-08-01 20:04:33.740','2026-08-01 20:04:33.740'),
(18,'HeyGen AI Shared','heygen-ai-shared',800,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,'Addon',0,0,0,18,3,'2026-08-01 20:04:33.743','2026-08-01 20:04:33.743'),
(19,'Helium10','helium10',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,19,4,'2026-08-01 20:04:33.745','2026-08-01 20:04:33.745'),
(20,'GPL WordPress Plugin & Themes','gpl-wordpress-plugin-themes',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,20,5,'2026-08-01 20:04:33.747','2026-08-01 20:04:33.747'),
(21,'Udemy','udemy',400,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,21,6,'2026-08-01 20:04:33.748','2026-08-01 20:04:33.748'),
(22,'Elementor Pro','elementor-pro',350,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,'Addon',0,0,0,22,5,'2026-08-01 20:04:33.750','2026-08-01 20:04:33.750'),
(23,'Vidiq','vidiq',500,'Month','🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,23,1,'2026-08-01 20:04:33.751','2026-08-01 20:04:33.751'),
(24,'Mi*Journey','mijourney',400,'Month','🎨 Daily 30 Generation\n🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,'Addon',0,0,0,24,3,'2026-08-01 20:04:33.753','2026-08-01 20:04:33.753'),
(25,'Additional IP/Device Access','additional-ip-access',100,'Month','➕ Add one more device / IP to your existing subscription\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,25,7,'2026-08-01 20:04:33.756','2026-08-01 20:04:33.756'),
(26,'ClaudeAI Shared Subscription | No Hourly Uses Limit | API Based Service','claudeai-shared',999,'Month','🚀 No Hourly Uses Limit\n🔌 API Based Service\n🚀 No Search limitations\n💻 Up to 2 devices / IP allowed\n⚡ 99% uptime for with no interruptions\n🛠 24/7 live chat support\n✅ Instant access after purchase',NULL,NULL,NULL,0,0,0,26,2,'2026-08-01 20:04:33.757','2026-08-01 20:04:33.757'),
(27,'Quillbot Pro (Yearly) - Private Access','quillbot-pro-yearly-private-access',2500,'Month','👤 Fully personal & dedicated account\n📧 Own email activation\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,27,8,'2026-08-01 20:04:33.761','2026-08-01 20:04:33.761'),
(28,'Ideogram Plus Private | Fully Personal and Dedicated Account | Create Stunning Logos & Designs with Ideogram Plus','ideogram-plus-private',1399,'Month','👤 Fully personal & dedicated account\n📧 Own email activation\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,28,8,'2026-08-01 20:04:33.763','2026-08-01 20:04:33.763'),
(29,'Youtube Premium Subscription - Family Invitation','youtube-premium',400,'Month','👨‍👩‍👧 Family invitation on your own email\n🚫 Ad-free videos & background play\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,29,8,'2026-08-01 20:04:33.764','2026-08-01 20:04:33.764'),
(30,'Coursera Plus Personal | 1 Year Personal Own Mail Subscription','coursera-1-year',3899,'Month','🎓 1 year Coursera Plus on your own email\n👤 Fully personal & dedicated\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,30,8,'2026-08-01 20:04:33.765','2026-08-01 20:04:33.765'),
(31,'HeyGen Creator - Private Access','heygen-private-access',2500,'Month','👤 Fully personal & dedicated account\n📧 Own email activation\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,31,8,'2026-08-01 20:04:33.767','2026-08-01 20:04:33.767'),
(32,'Microsoft 365 Personal Official License on Private Email','microsoft-365',1499,'Month','🪪 Official Microsoft 365 Personal license\n📧 Activated on your private email\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,32,8,'2026-08-01 20:04:33.769','2026-08-01 20:04:33.769'),
(33,'Ch**GPT - Private Access','chgpt-private-access',2300,'Month','👤 Fully personal & dedicated account\n📧 Own email activation\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,33,8,'2026-08-01 20:04:33.770','2026-08-01 20:04:33.770'),
(34,'SuperGrok - Private Account Access','grok-ai-private',1500,'Month','👤 Fully personal & dedicated account\n📧 Own email activation\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,34,8,'2026-08-01 20:04:33.771','2026-08-01 20:04:33.771'),
(35,'Claude Ai - Own Mail Access','claude-private',2300,'Month','👤 Fully personal & dedicated account\n📧 Own email activation\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,35,8,'2026-08-01 20:04:33.773','2026-08-01 20:04:33.773'),
(36,'CapCut Pro - Private Account Access','capcut-pro-private',800,'Month','👤 Fully personal & dedicated account\n📧 Own email activation\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,36,8,'2026-08-01 20:04:33.774','2026-08-01 20:04:33.774'),
(37,'Vidiq - Private Account Access','vidiq-private-account-access',699,'Month','👤 Fully personal & dedicated account\n📧 Own email activation\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,37,8,'2026-08-01 20:04:33.776','2026-08-01 20:04:33.776'),
(38,'NordVPN Yearly','nordvpn-yearly',1200,'Month','🔒 Yearly NordVPN subscription\n👤 Fully personal & dedicated\n⚡ Instant delivery\n🛠 24/7 live chat support',NULL,NULL,NULL,1,0,0,38,8,'2026-08-01 20:04:33.777','2026-08-01 20:04:33.777');
/*!40000 ALTER TABLE `Tool` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `User`
--

DROP TABLE IF EXISTS `User`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `User` (
  `id` varchar(191) NOT NULL,
  `name` varchar(191) NOT NULL,
  `email` varchar(191) NOT NULL,
  `passwordHash` varchar(191) NOT NULL,
  `createdAt` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `updatedAt` datetime(3) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `User_email_key` (`email`),
  KEY `User_email_idx` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `User`
--

LOCK TABLES `User` WRITE;
/*!40000 ALTER TABLE `User` DISABLE KEYS */;
/*!40000 ALTER TABLE `User` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `_prisma_migrations`
--

DROP TABLE IF EXISTS `_prisma_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `_prisma_migrations` (
  `id` varchar(36) NOT NULL,
  `checksum` varchar(64) NOT NULL,
  `finished_at` datetime(3) DEFAULT NULL,
  `migration_name` varchar(255) NOT NULL,
  `logs` text DEFAULT NULL,
  `rolled_back_at` datetime(3) DEFAULT NULL,
  `started_at` datetime(3) NOT NULL DEFAULT current_timestamp(3),
  `applied_steps_count` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `_prisma_migrations`
--

LOCK TABLES `_prisma_migrations` WRITE;
/*!40000 ALTER TABLE `_prisma_migrations` DISABLE KEYS */;
INSERT INTO `_prisma_migrations` VALUES
('750dc3f6-26ef-490f-8467-cd98b04d8aad','532742fe18e992dc3cfa31bc49a4e6a622200b4802c7a4c4640712569adaa853','2026-08-01 20:04:32.453','20260801200432_init',NULL,NULL,'2026-08-01 20:04:32.438',1);
/*!40000 ALTER TABLE `_prisma_migrations` 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 20:28:36
