Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
/*M!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: admin_mesra
-- ------------------------------------------------------
-- Server version 10.6.22-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 `failed_jobs`
--
DROP TABLE IF EXISTS `failed_jobs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `failed_jobs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uuid` varchar(255) NOT NULL,
`connection` text NOT NULL,
`queue` text NOT NULL,
`payload` longtext NOT NULL,
`exception` longtext NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp(),
PRIMARY KEY (`id`),
UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `failed_jobs`
--
LOCK TABLES `failed_jobs` WRITE;
/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `migrations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(255) NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES (1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_reset_tokens_table',1),(3,'2014_10_12_100000_create_password_resets_table',1),(4,'2019_08_19_000000_create_failed_jobs_table',1),(5,'2019_12_14_000001_create_personal_access_tokens_table',1),(6,'2024_06_06_140353_create_roles_table',1),(7,'2024_06_06_140425_create_permissions_table',1),(8,'2024_06_06_140448_create_role_permissions_table',1),(9,'2024_06_11_142818_create_pos_table',1);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `password_reset_tokens`
--
DROP TABLE IF EXISTS `password_reset_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_reset_tokens` (
`email` varchar(255) NOT NULL,
`token` varchar(255) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `password_reset_tokens`
--
LOCK TABLES `password_reset_tokens` WRITE;
/*!40000 ALTER TABLE `password_reset_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_reset_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `password_resets`
--
DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `password_resets` (
`email` varchar(255) NOT NULL,
`token` varchar(255) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `password_resets`
--
LOCK TABLES `password_resets` WRITE;
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `permissions`
--
DROP TABLE IF EXISTS `permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `permissions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`display_name` varchar(255) NOT NULL,
`group` varchar(255) NOT NULL,
`status` varchar(255) NOT NULL DEFAULT '1',
`author_ip` varchar(255) DEFAULT NULL,
`author_id` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `permissions`
--
LOCK TABLES `permissions` WRITE;
/*!40000 ALTER TABLE `permissions` DISABLE KEYS */;
INSERT INTO `permissions` VALUES (1,'create-user','Create User','User Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(2,'read-user','Read User','User Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(3,'update-user','Update User','User Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(4,'delete-user','Delete User','User Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(5,'create-role','Create Role','Role Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(6,'read-role','Read Role','Role Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(7,'update-role','Update Role','Role Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(8,'delete-role','Delete Role','Role Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(9,'create-pos','Create POS','POS Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(10,'read-pos','Read POS','POS Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(11,'update-pos','Update POS','POS Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(12,'delete-pos','Delete POS','POS Management','1',NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL);
/*!40000 ALTER TABLE `permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `personal_access_tokens`
--
DROP TABLE IF EXISTS `personal_access_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `personal_access_tokens` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tokenable_type` varchar(255) NOT NULL,
`tokenable_id` bigint(20) unsigned NOT NULL,
`name` varchar(255) NOT NULL,
`token` varchar(64) NOT NULL,
`abilities` text DEFAULT NULL,
`last_used_at` timestamp NULL DEFAULT NULL,
`expires_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `personal_access_tokens`
--
LOCK TABLES `personal_access_tokens` WRITE;
/*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `personal_access_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `pos`
--
DROP TABLE IF EXISTS `pos`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `pos` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`issuing` varchar(255) NOT NULL,
`supplier` varchar(255) DEFAULT NULL,
`order_id` varchar(255) DEFAULT NULL,
`item_name` varchar(255) DEFAULT NULL,
`delivery_number` varchar(255) DEFAULT NULL,
`delivery_date` varchar(255) DEFAULT NULL,
`purchase_amount` varchar(255) DEFAULT NULL,
`cost` varchar(255) DEFAULT NULL,
`commission` varchar(255) DEFAULT NULL,
`profit` varchar(255) DEFAULT NULL,
`status` varchar(255) NOT NULL DEFAULT '1',
`author_ip` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `pos`
--
LOCK TABLES `pos` WRITE;
/*!40000 ALTER TABLE `pos` DISABLE KEYS */;
INSERT INTO `pos` VALUES (9,'PIA','shams enterprises','24041973','oil filter','530','2024-08-13','199302','24000','85866','89436','1','103.244.179.4','2024-09-06 16:51:43','2025-06-05 16:18:59'),(10,'PIA','shams enterprises','24040178','toilet seat cover','529','2024-08-13','185850','87500','64895','33455','1','202.47.52.112','2024-09-06 16:59:21','2024-09-06 16:59:21'),(11,'PIA','shams enterprses','24040184','toilet seat cover','500','2024-09-12','185850','87500','64805','33545','1','202.47.52.112','2024-09-06 17:02:53','2024-09-06 17:07:42'),(12,'PIA','mesra enterprises','24042211','poly kit','303','2024-09-04','197355','75000','68908','53447','1','202.47.52.112','2024-09-06 17:06:59','2024-09-06 17:06:59'),(13,'PIA','mesra enterprses','24042161','poly kit','295','2024-09-10','197355','75000','68908','53447','1','202.47.52.112','2024-09-06 17:10:29','2024-10-12 16:10:25'),(15,'PIA','Mesra Enterprises','24042120','Abbrasive Disc','300','2024-02-22','137706','18000','66874','52832','1','202.47.52.112','2024-09-06 17:36:44','2024-09-06 17:36:44'),(16,'PIA','shams','24042097','molykote G-rapid','534','2024-08-21','117834','55000','40070','22764','1','202.47.52.112','2024-09-06 17:56:51','2024-09-06 17:56:51'),(17,'PIA','mesra','24041917','Adhesive tape','294','2024-08-05','163275','65000','40184','58091','1','202.47.52.112','2024-09-06 18:17:19','2024-09-06 18:17:19'),(18,'PIA','Mesra Enterprises','24042263','permakil','301','2024-09-02','184375','80000','64625','39750','1','202.47.52.112','2024-09-06 18:21:46','2024-09-06 18:21:46'),(19,'PIA','Mesra Enterprises','24042230','PERMAKIL EC25%','302','2024-08-02','184375','80000','64625','39750','1','202.47.52.112','2024-09-06 18:28:24','2024-09-06 18:28:24'),(20,'PIA','mesra','24042044','wheel/piston','299','2024-08-22','72606','32000','19440','21166','1','202.47.52.112','2024-09-06 18:42:20','2024-09-06 18:42:20'),(21,'PIA','mesra','24042158','Abbrasive Disc','000','2024-09-09','198181','30000','86007','82174','1','202.47.52.112','2024-09-06 18:47:27','2024-09-06 18:47:27'),(22,'PIA','shams','24042186','ABBRASIVE DISK','536','2024-09-04','198181','30000','86007','82174','1','202.47.52.112','2024-09-06 18:52:43','2024-09-06 18:52:43'),(23,'PIA','shams','24042026','pad scotch brite','533','2024-08-21','198830','49000','85860','63970','1','202.47.52.112','2024-09-06 19:02:45','2024-09-06 19:02:45'),(29,'PIA','MESRA','24042428','MOLYKOTE','314','2024-09-16','494656','185000','150959','158697','1','202.47.52.112','2024-10-12 13:26:54','2024-10-12 13:26:54'),(32,'PIA','MESRA','24040215','KITCHEN ITEM','304','2024-09-11','197734','79500','68162','50072','1','202.47.52.112','2024-10-12 18:00:20','2024-10-12 18:00:20'),(33,'PIA','SCOPE','24042405','POLYANE FILM','76','2024-09-19','371700','65000','142104','164596','1','202.47.52.112','2024-10-12 18:03:57','2024-10-12 18:03:57'),(34,'PIA','SHAMS','24041541','LESER JET','537','2024-09-09','197587','46970','130198','20419','1','202.47.52.112','2024-10-12 18:06:36','2024-10-12 18:06:36'),(35,'PIA','SHAMS','24042305','DIGITAL THERMOMETER','540','2024-09-11','176594','12000','97520','67074','1','202.47.52.112','2024-10-12 18:11:25','2024-10-12 18:11:25'),(36,'PIA','SHAMS','24041552','TONER','538','2024-09-11','52580','25500','17009','10071','1','202.47.52.112','2024-10-12 18:13:45','2024-10-12 18:13:45'),(37,'PIA','SHAMS','24042442','SCREEN PRINTING INK','524','2024-09-19','105690','10000','51466','44224','1','202.47.52.112','2024-10-12 18:16:23','2024-10-12 18:16:23'),(38,'PIA','MESRA SHASM','24042156/157','PAINT/ZIP LOCK BAGS','297/532','2024-08-21','381687','130000','152696','98991','1','202.47.52.112','2024-10-12 18:20:27','2024-10-12 18:20:27'),(39,'PIA','SHAMS','24040228','TOILET SEAT COVER','549','2024-10-08','185850','87500','64895','33455','1','202.47.52.112','2024-10-12 18:22:32','2024-10-12 18:22:32'),(40,'PIA','SHAMS','24042382','CIRCUIT BREAKER','541','2024-09-13','86352','20000','36952','29400','1','202.47.52.112','2024-10-12 18:24:27','2024-10-12 18:24:27'),(41,'PIA','MESRA','24042536','V-BELT /ADHESIVE TAPE','310','2024-09-25','62899','7500','28950','26449','1','202.47.52.112','2024-10-12 18:26:28','2024-10-12 18:26:28'),(42,'PIA','MESRA','24040244','SANATORY TOWEL','309','2024-09-24','191750','70000','68260','53490','1','202.47.52.112','2024-10-12 18:30:07','2024-10-12 18:30:07'),(43,'PIA','SHAMS','24042513','FAN IND','545','2024-09-24','125693','82000','28834','14859','1','202.47.52.112','2024-10-12 18:32:27','2024-10-12 18:32:27'),(44,'PIA','SHAMS','24041692','SCOTCH TAPE','549','2024-10-07','195408','43500','91249','60659','1','202.47.52.112','2024-10-12 18:34:29','2024-10-12 18:34:29'),(45,'PIA','MESRA','24041677','BUBBLE SHHET ROLL','312','2024-09-25','199774','48000','92123','59651','1','202.47.52.112','2024-10-12 18:36:00','2024-10-12 18:36:00'),(46,'PIA','SCOPE','24042551','SCOTCH BRITE PAD 3M','80','2024-10-07','182900','49000','76848','57052','1','202.47.52.112','2024-10-12 18:37:51','2024-10-12 18:37:51'),(47,'PIA','SCOPE','24041089','SCANNER/CHAIR','68','2024-06-14','137651','22500','73595','41556','1','202.47.52.112','2024-10-12 18:42:22','2024-10-12 18:42:22'),(48,'PIA','MESRA','24041405','GLOVES','270','2024-06-10','79591','8500','42175','28916','1','202.47.52.112','2024-10-12 18:47:49','2024-10-12 18:47:49'),(49,'PIA','MESRA','24041537','PRESS GAUG/JAR GLASS','280','2024-06-26','171808','31500','75916','64392','1','202.47.52.112','2024-10-12 18:53:13','2024-10-12 18:53:13'),(50,'PIA','SCOPE','24041564','RED STREAMER 36,,','72','2024-07-12','84783','15000','36598','33185','1','202.47.52.112','2024-10-12 18:57:14','2024-10-12 18:58:03'),(51,'PIA','SCOPE','24041536','RED STREMER 12,,','71','2024-07-10','141246','15000','70299','55947','1','202.47.52.112','2024-10-12 19:02:34','2024-10-12 19:02:34'),(52,'PIA','SHAMS','24041546','RED STREAMER 36,,','522','2024-07-11','113044','20000','47465','45579','1','202.47.52.112','2024-10-12 19:06:23','2024-10-12 19:06:23'),(53,'PIA','SHAMS','24041538','RED STREMER 36,,','520','2024-07-10','169566','30000','69697','69869','1','202.47.52.112','2024-10-12 19:09:07','2024-10-12 19:09:07');
/*!40000 ALTER TABLE `pos` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `role_permissions`
--
DROP TABLE IF EXISTS `role_permissions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `role_permissions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(11) NOT NULL,
`permission_id` varchar(255) NOT NULL,
`user_id` int(11) NOT NULL,
`status` varchar(255) NOT NULL DEFAULT '1',
`author_ip` varchar(255) DEFAULT NULL,
`author_id` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `role_permissions`
--
LOCK TABLES `role_permissions` WRITE;
/*!40000 ALTER TABLE `role_permissions` DISABLE KEYS */;
/*!40000 ALTER TABLE `role_permissions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `roles`
--
DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `roles` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`status` int(11) NOT NULL DEFAULT 1,
`user_id` int(11) NOT NULL DEFAULT 1,
`author_ip` text DEFAULT NULL,
`author_id` text DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `roles`
--
LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` VALUES (1,'Admin',1,1,NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(2,'Provider',1,1,NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL),(3,'User',1,1,NULL,NULL,'2024-06-11 20:03:37','2024-06-11 20:03:37',NULL);
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) NOT NULL,
`user_type` varchar(255) DEFAULT NULL,
`remember_token` varchar(100) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'Admin','designsfunnel@gmail.com','2024-06-11 20:03:37','$2y$12$wgJo6BsSDuaQCVso.yiyNO0Eg.D2O/WUGTG40rulalLWNpR0GcJzi','0','BEh57aB7R0pDUDwO0NzAxGoF0LIrgDEfLAMctg4NIdzw83nc5xYu30zzSf1q',NULL,NULL);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2025-06-18 21:49:35