-- MariaDB dump 10.19  Distrib 10.4.32-MariaDB, for Win64 (AMD64)
--
-- Host: localhost    Database: leasing_db
-- ------------------------------------------------------
-- Server version	10.4.32-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 `audit_logs`
--

DROP TABLE IF EXISTS `audit_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `audit_logs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `action` varchar(255) NOT NULL,
  `entity_type` varchar(255) DEFAULT NULL,
  `entity_id` bigint(20) unsigned DEFAULT NULL,
  `old_values` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`old_values`)),
  `new_values` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`new_values`)),
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `audit_logs_user_id_foreign` (`user_id`),
  CONSTRAINT `audit_logs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `audit_logs`
--

LOCK TABLES `audit_logs` WRITE;
/*!40000 ALTER TABLE `audit_logs` DISABLE KEYS */;
INSERT INTO `audit_logs` VALUES (1,24,'PAYMENT_UPLOADED','App\\Models\\ManualPayment',1,NULL,NULL,'2026-03-26 08:15:27','2026-03-26 08:15:27'),(2,1,'PAYMENT_APPROVED','App\\Models\\ManualPayment',1,NULL,'{\"notes\":null}','2026-03-26 08:15:41','2026-03-26 08:15:41'),(3,25,'PAYMENT_UPLOADED','App\\Models\\ManualPayment',2,NULL,NULL,'2026-03-26 08:18:11','2026-03-26 08:18:11'),(4,1,'PAYMENT_APPROVED','App\\Models\\ManualPayment',2,NULL,'{\"notes\":null}','2026-03-26 08:18:25','2026-03-26 08:18:25'),(5,25,'RECORD_CREATED','App\\Models\\LeasingRecord',1,NULL,NULL,'2026-03-26 08:22:01','2026-03-26 08:22:01');
/*!40000 ALTER TABLE `audit_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `branches`
--

DROP TABLE IF EXISTS `branches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `branches` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leasing_profile_id` bigint(20) unsigned NOT NULL,
  `branch_name` varchar(255) NOT NULL,
  `address` text DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `branches_leasing_profile_id_foreign` (`leasing_profile_id`),
  CONSTRAINT `branches_leasing_profile_id_foreign` FOREIGN KEY (`leasing_profile_id`) REFERENCES `leasing_profiles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `branches`
--

LOCK TABLES `branches` WRITE;
/*!40000 ALTER TABLE `branches` DISABLE KEYS */;
INSERT INTO `branches` VALUES (1,1,'MEDAN','Genta Buana 07','08123456789765','2026-03-26 08:19:16','2026-03-26 08:19:16'),(2,1,'Jakarta','Genta buna 05','009876545676','2026-03-26 08:19:42','2026-03-26 08:19:42');
/*!40000 ALTER TABLE `branches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache`
--

DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache` (
  `key` varchar(255) NOT NULL,
  `value` mediumtext NOT NULL,
  `expiration` int(11) NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache`
--

LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
INSERT INTO `cache` VALUES ('cms_landing_settings','a:10:{s:8:\"app_name\";s:10:\"LEASINGPRO\";s:12:\"app_subtitle\";s:64:\"Platform Manajemen Data Leasing dan Pencarian Kendaraan Terpadu.\";s:15:\"hero_background\";s:11:\"bg-slate-50\";s:17:\"login_button_text\";s:12:\"Masuk Sistem\";s:20:\"register_button_text\";s:11:\"Daftar Akun\";s:10:\"front_logo\";s:0:\"\";s:12:\"hero_tagline\";N;s:20:\"hero_overlay_opacity\";s:3:\"0.4\";s:14:\"hero_alignment\";s:6:\"center\";s:15:\"hero_text_color\";s:7:\"#020617\";}',2089888288);
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cache_locks`
--

DROP TABLE IF EXISTS `cache_locks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_locks` (
  `key` varchar(255) NOT NULL,
  `owner` varchar(255) NOT NULL,
  `expiration` int(11) NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_locks`
--

LOCK TABLES `cache_locks` WRITE;
/*!40000 ALTER TABLE `cache_locks` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_locks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_settings`
--

DROP TABLE IF EXISTS `cms_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cms_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(255) NOT NULL,
  `value` text DEFAULT NULL,
  `type` varchar(255) NOT NULL DEFAULT 'text',
  `group` varchar(255) NOT NULL DEFAULT 'general',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `cms_settings_key_unique` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_settings`
--

LOCK TABLES `cms_settings` WRITE;
/*!40000 ALTER TABLE `cms_settings` DISABLE KEYS */;
INSERT INTO `cms_settings` VALUES (1,'app_name','LEASINGPRO','text','landing',NULL,NULL),(2,'app_subtitle','Platform Manajemen Data Leasing dan Pencarian Kendaraan Terpadu.','text','landing',NULL,NULL),(3,'hero_background','bg-slate-50','text','landing',NULL,NULL),(4,'login_button_text','Masuk Sistem','text','landing',NULL,NULL),(5,'register_button_text','Daftar Akun','text','landing',NULL,NULL),(6,'front_logo','','text','landing',NULL,NULL),(7,'hero_tagline',NULL,'text','landing','2026-03-26 05:30:56','2026-03-26 05:30:56'),(8,'hero_overlay_opacity','0.4','text','landing','2026-03-26 05:30:56','2026-03-26 05:30:56'),(9,'hero_alignment','center','text','landing','2026-03-26 05:30:56','2026-03-26 05:30:56'),(10,'hero_text_color','#020617','text','landing','2026-03-26 05:30:57','2026-03-26 05:30:57');
/*!40000 ALTER TABLE `cms_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- 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 = utf8 */;
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 `job_batches`
--

DROP TABLE IF EXISTS `job_batches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `job_batches` (
  `id` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `total_jobs` int(11) NOT NULL,
  `pending_jobs` int(11) NOT NULL,
  `failed_jobs` int(11) NOT NULL,
  `failed_job_ids` longtext NOT NULL,
  `options` mediumtext DEFAULT NULL,
  `cancelled_at` int(11) DEFAULT NULL,
  `created_at` int(11) NOT NULL,
  `finished_at` int(11) 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 `job_batches`
--

LOCK TABLES `job_batches` WRITE;
/*!40000 ALTER TABLE `job_batches` DISABLE KEYS */;
/*!40000 ALTER TABLE `job_batches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jobs`
--

DROP TABLE IF EXISTS `jobs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jobs` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `queue` varchar(255) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) unsigned NOT NULL,
  `reserved_at` int(10) unsigned DEFAULT NULL,
  `available_at` int(10) unsigned NOT NULL,
  `created_at` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `jobs_queue_index` (`queue`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jobs`
--

LOCK TABLES `jobs` WRITE;
/*!40000 ALTER TABLE `jobs` DISABLE KEYS */;
/*!40000 ALTER TABLE `jobs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `leasing_data_uploads`
--

DROP TABLE IF EXISTS `leasing_data_uploads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leasing_data_uploads` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leasing_profile_id` bigint(20) unsigned NOT NULL,
  `filename` varchar(255) NOT NULL,
  `row_count` int(11) NOT NULL DEFAULT 0,
  `status` varchar(255) NOT NULL DEFAULT 'processing',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leasing_data_uploads_leasing_profile_id_foreign` (`leasing_profile_id`),
  CONSTRAINT `leasing_data_uploads_leasing_profile_id_foreign` FOREIGN KEY (`leasing_profile_id`) REFERENCES `leasing_profiles` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leasing_data_uploads`
--

LOCK TABLES `leasing_data_uploads` WRITE;
/*!40000 ALTER TABLE `leasing_data_uploads` DISABLE KEYS */;
/*!40000 ALTER TABLE `leasing_data_uploads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `leasing_profiles`
--

DROP TABLE IF EXISTS `leasing_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leasing_profiles` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `company_name` varchar(255) NOT NULL,
  `address` text DEFAULT NULL,
  `logo` varchar(255) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leasing_profiles_user_id_foreign` (`user_id`),
  CONSTRAINT `leasing_profiles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leasing_profiles`
--

LOCK TABLES `leasing_profiles` WRITE;
/*!40000 ALTER TABLE `leasing_profiles` DISABLE KEYS */;
INSERT INTO `leasing_profiles` VALUES (1,25,'PT. GENTA BUANA LEASING',NULL,NULL,NULL,'2026-03-26 08:17:51','2026-03-26 08:17:51');
/*!40000 ALTER TABLE `leasing_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `leasing_records`
--

DROP TABLE IF EXISTS `leasing_records`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `leasing_records` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `leasing_profile_id` bigint(20) unsigned NOT NULL,
  `branch_id` bigint(20) unsigned DEFAULT NULL,
  `upload_id` bigint(20) unsigned DEFAULT NULL,
  `tgl_data` date NOT NULL,
  `nopol` varchar(255) NOT NULL,
  `rangka` varchar(255) NOT NULL,
  `mesin` varchar(255) NOT NULL,
  `model` varchar(255) DEFAULT NULL,
  `kendaraan` varchar(255) DEFAULT NULL,
  `customer_name` varchar(255) DEFAULT NULL,
  `customer_phone` varchar(255) DEFAULT NULL,
  `customer_address` text DEFAULT NULL,
  `overdue_days` int(11) NOT NULL DEFAULT 0,
  `sisa_saldo` decimal(15,2) NOT NULL DEFAULT 0.00,
  `legal_flag` tinyint(1) NOT NULL DEFAULT 0,
  `member_warning` text DEFAULT NULL,
  `member_instruction` text DEFAULT NULL,
  `internal_note` text DEFAULT NULL,
  `record_status` varchar(255) NOT NULL DEFAULT 'active',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `leasing_records_leasing_profile_id_foreign` (`leasing_profile_id`),
  KEY `leasing_records_branch_id_foreign` (`branch_id`),
  KEY `leasing_records_upload_id_foreign` (`upload_id`),
  KEY `leasing_records_nopol_index` (`nopol`),
  KEY `leasing_records_rangka_index` (`rangka`),
  KEY `leasing_records_mesin_index` (`mesin`),
  CONSTRAINT `leasing_records_branch_id_foreign` FOREIGN KEY (`branch_id`) REFERENCES `branches` (`id`) ON DELETE SET NULL,
  CONSTRAINT `leasing_records_leasing_profile_id_foreign` FOREIGN KEY (`leasing_profile_id`) REFERENCES `leasing_profiles` (`id`) ON DELETE CASCADE,
  CONSTRAINT `leasing_records_upload_id_foreign` FOREIGN KEY (`upload_id`) REFERENCES `leasing_data_uploads` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `leasing_records`
--

LOCK TABLES `leasing_records` WRITE;
/*!40000 ALTER TABLE `leasing_records` DISABLE KEYS */;
INSERT INTO `leasing_records` VALUES (1,1,1,NULL,'2026-03-26','B123344 BK','5678987656789','8976567898765','2021','Fortuner','Ucok','09876545678','medan Johor',378,45000000.00,0,'Melarikan Diri Kesiantar','Utamakan Tarik Unit','Ini Bukan Bukti Perintah Asli, Tidak mewakilkan apapun','active','2026-03-26 08:22:01','2026-03-26 08:22:01');
/*!40000 ALTER TABLE `leasing_records` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `manual_payments`
--

DROP TABLE IF EXISTS `manual_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `manual_payments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `subscription_id` bigint(20) unsigned NOT NULL,
  `amount` decimal(15,2) NOT NULL,
  `transfer_date` date NOT NULL,
  `sender_name` varchar(255) NOT NULL,
  `proof_path` varchar(255) NOT NULL,
  `payment_status` varchar(255) NOT NULL DEFAULT 'pending',
  `reviewed_by` bigint(20) unsigned DEFAULT NULL,
  `reviewed_at` timestamp NULL DEFAULT NULL,
  `review_notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `manual_payments_subscription_id_foreign` (`subscription_id`),
  KEY `manual_payments_reviewed_by_foreign` (`reviewed_by`),
  CONSTRAINT `manual_payments_reviewed_by_foreign` FOREIGN KEY (`reviewed_by`) REFERENCES `users` (`id`),
  CONSTRAINT `manual_payments_subscription_id_foreign` FOREIGN KEY (`subscription_id`) REFERENCES `subscriptions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `manual_payments`
--

LOCK TABLES `manual_payments` WRITE;
/*!40000 ALTER TABLE `manual_payments` DISABLE KEYS */;
INSERT INTO `manual_payments` VALUES (1,1,100000.00,'2026-03-26','surya','private/payments/proofs/24/1774538127_649116793_10225539886644001_6517222208887605089_n.jpg','approved',1,'2026-03-26 08:15:41',NULL,'2026-03-26 08:15:27','2026-03-26 08:15:41'),(2,2,1500000.00,'2026-03-26','buana','private/payments/proofs/25/1774538291_KAMPUS.png','approved',1,'2026-03-26 08:18:25',NULL,'2026-03-26 08:18:11','2026-03-26 08:18:25');
/*!40000 ALTER TABLE `manual_payments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `member_profiles`
--

DROP TABLE IF EXISTS `member_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `member_profiles` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `address` text DEFAULT NULL,
  `id_card_number` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `member_profiles_user_id_foreign` (`user_id`),
  CONSTRAINT `member_profiles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `member_profiles`
--

LOCK TABLES `member_profiles` WRITE;
/*!40000 ALTER TABLE `member_profiles` DISABLE KEYS */;
INSERT INTO `member_profiles` VALUES (1,24,NULL,NULL,'2026-03-26 08:14:44','2026-03-26 08:14:44');
/*!40000 ALTER TABLE `member_profiles` 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 = utf8 */;
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=9 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,'0001_01_01_000000_create_users_table',1),(2,'0001_01_01_000001_create_cache_table',1),(3,'0001_01_01_000002_create_jobs_table',1),(4,'2026_03_25_000001_create_registrations_table',1),(5,'2026_03_25_000002_create_profiles_table',1),(6,'2026_03_25_000003_create_monetization_table',1),(7,'2026_03_25_000004_create_core_records_table',1),(8,'2026_03_25_000005_create_logs_table',1);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `notifications`
--

DROP TABLE IF EXISTS `notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notifications` (
  `id` char(36) NOT NULL,
  `type` varchar(255) NOT NULL,
  `notifiable_type` varchar(255) NOT NULL,
  `notifiable_id` bigint(20) unsigned NOT NULL,
  `data` text NOT NULL,
  `read_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notifications_notifiable_type_notifiable_id_index` (`notifiable_type`,`notifiable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `notifications`
--

LOCK TABLES `notifications` WRITE;
/*!40000 ALTER TABLE `notifications` DISABLE KEYS */;
INSERT INTO `notifications` VALUES ('0501404e-3bdf-4af6-8f8c-1dabc4af0aba','App\\Notifications\\SystemNotification','App\\Models\\User',10,'{\"title\":\"Pembayaran Disetujui\",\"message\":\"Selamat! Pembayaran Anda telah dikonfirmasi dan akun Anda kini aktif.\",\"type\":\"success\",\"link\":\"http:\\/\\/localhost:8000\\/dashboard\"}',NULL,'2026-03-25 22:05:52','2026-03-25 22:05:52'),('14cf0b27-f92f-4601-9e55-a555e0030a51','App\\Notifications\\SystemNotification','App\\Models\\User',1,'{\"title\":\"Review Pembayaran Baru\",\"message\":\"User Test User telah mengunggah bukti bayar Rp 50.000\",\"type\":\"warning\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/payment-reviews\"}',NULL,'2026-03-26 06:24:31','2026-03-26 06:24:31'),('29ce8be6-ab98-48a0-9544-7d34478d8ea3','App\\Notifications\\SystemNotification','App\\Models\\User',19,'{\"title\":\"Pembayaran Disetujui\",\"message\":\"Selamat! Pembayaran Anda telah dikonfirmasi dan akun Anda kini aktif.\",\"type\":\"success\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\"}',NULL,'2026-03-26 06:25:36','2026-03-26 06:25:36'),('2b9c2ed1-956c-4abb-91a1-d423985f66c2','App\\Notifications\\SystemNotification','App\\Models\\User',22,'{\"title\":\"Pembayaran Disetujui\",\"message\":\"Selamat! Pembayaran Anda telah dikonfirmasi dan akun Anda kini aktif.\",\"type\":\"success\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\"}',NULL,'2026-03-26 06:25:41','2026-03-26 06:25:41'),('2fac1c66-9d93-460e-9e6f-b9a571951424','App\\Notifications\\SystemNotification','App\\Models\\User',1,'{\"title\":\"Review Pembayaran Baru\",\"message\":\"User ucok telah mengunggah bukti bayar Rp 50.000\",\"type\":\"warning\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/payment-reviews\"}',NULL,'2026-03-26 05:34:50','2026-03-26 05:34:50'),('58386834-4c02-4e20-9730-9e468f076eb4','App\\Notifications\\SystemNotification','App\\Models\\User',1,'{\"title\":\"Review Pembayaran Baru\",\"message\":\"User asal telah mengunggah bukti bayar Rp 1.500.000\",\"type\":\"warning\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/payment-reviews\"}',NULL,'2026-03-26 06:29:33','2026-03-26 06:29:33'),('5a779b16-5cb5-459c-96cd-30e01eac4113','App\\Notifications\\SystemNotification','App\\Models\\User',23,'{\"title\":\"Pembayaran Disetujui\",\"message\":\"Selamat! Pembayaran Anda telah dikonfirmasi dan akun Anda kini aktif.\",\"type\":\"success\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\"}',NULL,'2026-03-26 06:30:44','2026-03-26 06:30:44'),('702fd7f9-04bc-4518-a580-c38a8601f50a','App\\Notifications\\SystemNotification','App\\Models\\User',1,'{\"title\":\"Review Pembayaran Baru\",\"message\":\"User sniper telah mengunggah bukti bayar Rp 50.000\",\"type\":\"warning\",\"link\":\"http:\\/\\/localhost:8000\\/admin\\/payment-reviews\"}',NULL,'2026-03-25 21:06:09','2026-03-25 21:06:09'),('8955845a-0953-42c3-8ca4-11aa13b076e9','App\\Notifications\\SystemNotification','App\\Models\\User',1,'{\"title\":\"Review Pembayaran Baru\",\"message\":\"User Surya Putra Sianipar telah mengunggah bukti bayar Rp 100.000\",\"type\":\"warning\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/payment-reviews\"}',NULL,'2026-03-26 08:15:27','2026-03-26 08:15:27'),('996caf8a-69ff-45f6-bd01-3a21d298cafc','App\\Notifications\\SystemNotification','App\\Models\\User',7,'{\"title\":\"Pembayaran Disetujui\",\"message\":\"Selamat! Pembayaran Anda telah dikonfirmasi dan akun Anda kini aktif.\",\"type\":\"success\",\"link\":\"http:\\/\\/localhost:8000\\/dashboard\"}',NULL,'2026-03-25 22:05:59','2026-03-25 22:05:59'),('9beaeccf-4960-4760-b6fc-7b5eef9fe6aa','App\\Notifications\\SystemNotification','App\\Models\\User',1,'{\"title\":\"Review Pembayaran Baru\",\"message\":\"User adira siantar telah mengunggah bukti bayar Rp 1.500.000\",\"type\":\"warning\",\"link\":\"http:\\/\\/localhost:8000\\/admin\\/payment-reviews\"}',NULL,'2026-03-25 21:23:22','2026-03-25 21:23:22'),('a6620273-5ea5-484d-8d02-878752264996','App\\Notifications\\SystemNotification','App\\Models\\User',24,'{\"title\":\"Pembayaran Disetujui\",\"message\":\"Selamat! Pembayaran Anda telah dikonfirmasi dan akun Anda kini aktif.\",\"type\":\"success\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\"}',NULL,'2026-03-26 08:15:41','2026-03-26 08:15:41'),('b757ff45-dd40-4436-9b46-68c73ae7cb4e','App\\Notifications\\SystemNotification','App\\Models\\User',25,'{\"title\":\"Pembayaran Disetujui\",\"message\":\"Selamat! Pembayaran Anda telah dikonfirmasi dan akun Anda kini aktif.\",\"type\":\"success\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/dashboard\"}',NULL,'2026-03-26 08:18:25','2026-03-26 08:18:25'),('c0c78a9e-9cf3-473e-bf86-6a63c2c90de8','App\\Notifications\\SystemNotification','App\\Models\\User',1,'{\"title\":\"Review Pembayaran Baru\",\"message\":\"User BUANA telah mengunggah bukti bayar Rp 1.500.000\",\"type\":\"warning\",\"link\":\"http:\\/\\/127.0.0.1:8000\\/admin\\/payment-reviews\"}',NULL,'2026-03-26 08:18:11','2026-03-26 08:18:11');
/*!40000 ALTER TABLE `notifications` 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 = utf8 */;
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 */;
INSERT INTO `password_reset_tokens` VALUES ('admin@leasing.com','$2y$12$kFrA8z8rCczy4Fg017sNs.2/qgvixIYof0OXot7r1n2yeV7Ku638q','2026-03-25 13:29:58');
/*!40000 ALTER TABLE `password_reset_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `plans`
--

DROP TABLE IF EXISTS `plans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plans` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `role_type` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `price` decimal(15,2) NOT NULL,
  `duration_days` int(11) NOT NULL,
  `features_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`features_json`)),
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plans`
--

LOCK TABLES `plans` WRITE;
/*!40000 ALTER TABLE `plans` DISABLE KEYS */;
INSERT INTO `plans` VALUES (1,'member','Member Bronze (30 Hari)',100000.00,30,'[\"Akses Data Nasional 30 Hari\"]',1,'2026-03-25 13:26:54','2026-03-26 08:06:43'),(2,'leasing','Leasing Startup (90 Hari)',1500000.00,90,'{\"record_limit\":1000,\"import_excel\":true}',1,'2026-03-25 13:26:54','2026-03-25 13:26:54');
/*!40000 ALTER TABLE `plans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `registrations`
--

DROP TABLE IF EXISTS `registrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `registrations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `registration_type` varchar(255) NOT NULL,
  `registration_status` varchar(255) NOT NULL DEFAULT 'pending',
  `reviewed_at` timestamp NULL DEFAULT NULL,
  `reviewed_by` bigint(20) unsigned DEFAULT NULL,
  `review_notes` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `registrations_user_id_foreign` (`user_id`),
  KEY `registrations_reviewed_by_foreign` (`reviewed_by`),
  CONSTRAINT `registrations_reviewed_by_foreign` FOREIGN KEY (`reviewed_by`) REFERENCES `users` (`id`),
  CONSTRAINT `registrations_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `registrations`
--

LOCK TABLES `registrations` WRITE;
/*!40000 ALTER TABLE `registrations` DISABLE KEYS */;
INSERT INTO `registrations` VALUES (1,24,'member','pending',NULL,NULL,NULL,'2026-03-26 08:14:44','2026-03-26 08:14:44'),(2,25,'leasing','pending',NULL,NULL,NULL,'2026-03-26 08:17:51','2026-03-26 08:17:51');
/*!40000 ALTER TABLE `registrations` 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 = utf8 */;
CREATE TABLE `roles` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `roles_name_unique` (`name`)
) 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','2026-03-25 13:26:53','2026-03-25 13:26:53'),(2,'leasing','2026-03-25 13:26:53','2026-03-25 13:26:53'),(3,'member','2026-03-25 13:26:53','2026-03-25 13:26:53');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
  `id` varchar(255) NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `ip_address` varchar(45) DEFAULT NULL,
  `user_agent` text DEFAULT NULL,
  `payload` longtext NOT NULL,
  `last_activity` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `sessions_user_id_index` (`user_id`),
  KEY `sessions_last_activity_index` (`last_activity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sessions`
--

LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
INSERT INTO `sessions` VALUES ('dpyCqoI93txH83Rub6ofJQQGEu8eq06tYDSWZHJe',NULL,'127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0','YTozOntzOjY6Il90b2tlbiI7czo0MDoiV0NmNUNveHFxSVkyb3VwdXAyNDVOZGs2Qmh6NUpQeUNmZkxmek5mbiI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjE6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMCI7fX0=',1774538598),('nPk3h5qwmIT4C9sNTz6PkyWwHw5kDlJVun0mUfZy',1,'127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36','YTo1OntzOjY6Il90b2tlbiI7czo0MDoieDNreG9uUkFmbWk0cThMaDdpOXRkMGdVRnQ2TlFTb0RHd0lEMW9qaiI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6NDM6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMC9hZG1pbi9wYXltZW50LXJldmlld3MiO31zOjUwOiJsb2dpbl93ZWJfNTliYTM2YWRkYzJiMmY5NDAxNTgwZjAxNGM3ZjU4ZWE0ZTMwOTg5ZCI7aToxO3M6MzoidXJsIjthOjA6e319',1774542223),('QEC90msWLCdNhOMhZR2nV1utuST77WrQjtJL3PQ6',NULL,'127.0.0.1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36','YTozOntzOjY6Il90b2tlbiI7czo0MDoic2I3d1htQ0hGZTFEZVVYWU9oY1VxVHZVYXRmSGxaR3JLUlZtZFpQNSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjE6Imh0dHA6Ly9sb2NhbGhvc3Q6ODAwMCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=',1774539058);
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `subscriptions`
--

DROP TABLE IF EXISTS `subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subscriptions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `plan_id` bigint(20) unsigned NOT NULL,
  `subscription_status` varchar(255) NOT NULL DEFAULT 'inactive',
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `subscriptions_user_id_foreign` (`user_id`),
  KEY `subscriptions_plan_id_foreign` (`plan_id`),
  CONSTRAINT `subscriptions_plan_id_foreign` FOREIGN KEY (`plan_id`) REFERENCES `plans` (`id`) ON DELETE CASCADE,
  CONSTRAINT `subscriptions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subscriptions`
--

LOCK TABLES `subscriptions` WRITE;
/*!40000 ALTER TABLE `subscriptions` DISABLE KEYS */;
INSERT INTO `subscriptions` VALUES (1,24,1,'active','2026-03-26','2026-04-25','2026-03-26 08:14:56','2026-03-26 08:15:41'),(2,25,2,'active','2026-03-26','2026-06-24','2026-03-26 08:17:57','2026-03-26 08:18:25');
/*!40000 ALTER TABLE `subscriptions` 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 = utf8 */;
CREATE TABLE `users` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(255) NOT NULL,
  `role_id` bigint(20) unsigned NOT NULL,
  `account_status` varchar(255) NOT NULL DEFAULT 'pending',
  `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`),
  KEY `users_role_id_foreign` (`role_id`),
  CONSTRAINT `users_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=26 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,'Super Admin','admin@leasing.com',NULL,NULL,'$2y$12$92wcu.iBSpxP3GLluWNAQu/D6XHZPrle7R2iufdVk2CBdek.6gMS2',1,'active',NULL,'2026-03-25 13:26:53','2026-03-25 13:26:53'),(24,'Surya Putra S','surya@gmail.com','081234244425',NULL,'$2y$12$NHpRavKub4UD8ljk2TTQMO8yi7a7ebcxa0mIpHDjVW6.Zz0Z7nK6y',3,'active',NULL,'2026-03-26 08:14:44','2026-03-26 08:16:34'),(25,'BUANA','buana@gmail.com','081234256',NULL,'$2y$12$cAVxgYUTsUtCWDNi.7VG/ulTxT58DwgPi96rSOam3y2N1XMTc3XRq',2,'active',NULL,'2026-03-26 08:17:51','2026-03-26 08:18:25');
/*!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 2026-03-26 23:52:22
