Path : /var/www/html/mini-moneyexchange/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/mini-moneyexchange/moneyexchange.sql |
-- MySQL dump 10.13 Distrib 8.0.29, for Linux (x86_64) -- -- Host: localhost Database: moneyexchange -- ------------------------------------------------------ -- Server version 8.0.29-0ubuntu0.20.04.3 /*!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 */; /*!50503 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 `bank_account_transactions` -- DROP TABLE IF EXISTS `bank_account_transactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `bank_account_transactions` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `bank_account_id` bigint unsigned DEFAULT NULL, `transaction_type` enum('in','out') COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double NOT NULL, `credit_before_transaction` double NOT NULL, `credit_after_transaction` double NOT NULL, `user_id` bigint unsigned DEFAULT NULL, `note` text COLLATE utf8mb4_unicode_ci, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_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 `bank_account_transactions` -- LOCK TABLES `bank_account_transactions` WRITE; /*!40000 ALTER TABLE `bank_account_transactions` DISABLE KEYS */; /*!40000 ALTER TABLE `bank_account_transactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bank_accounts` -- DROP TABLE IF EXISTS `bank_accounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `bank_accounts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `bank_id` bigint unsigned DEFAULT NULL, `currency_id` bigint unsigned DEFAULT NULL, `bank_username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` double NOT NULL DEFAULT '0', `user_id` bigint unsigned DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_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 `bank_accounts` -- LOCK TABLES `bank_accounts` WRITE; /*!40000 ALTER TABLE `bank_accounts` DISABLE KEYS */; /*!40000 ALTER TABLE `bank_accounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `banks` -- DROP TABLE IF EXISTS `banks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `banks` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `logo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `user_id` bigint unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `banks_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 `banks` -- LOCK TABLES `banks` WRITE; /*!40000 ALTER TABLE `banks` DISABLE KEYS */; INSERT INTO `banks` VALUES (1,'ABA',NULL,NULL,1,'2022-07-07 09:08:39','2022-07-07 09:08:39'),(2,'វីង',NULL,NULL,1,'2022-07-07 09:08:42','2022-07-07 09:08:56'),(3,'អេស៊ីលីដា',NULL,NULL,1,'2022-07-07 09:08:51','2022-07-07 09:08:51'); /*!40000 ALTER TABLE `banks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `currencies` -- DROP TABLE IF EXISTS `currencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `currencies` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `logo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint unsigned DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `currencies_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 `currencies` -- LOCK TABLES `currencies` WRITE; /*!40000 ALTER TABLE `currencies` DISABLE KEYS */; INSERT INTO `currencies` VALUES (1,'ដុល្លា',NULL,1,NULL,'2022-07-07 09:08:08','2022-07-07 09:08:23'),(2,'រៀល',NULL,1,NULL,'2022-07-07 09:08:15','2022-07-07 09:08:15'),(3,'បាត',NULL,1,NULL,'2022-07-07 09:08:27','2022-07-07 09:08:27'); /*!40000 ALTER TABLE `currencies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `failed_jobs` -- DROP TABLE IF EXISTS `failed_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `failed_jobs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci 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 */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `migrations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 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_11_000001_create_roles_table',1),(2,'2014_10_12_000000_create_users_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,'2022_06_20_151035_create_currencies_table',1),(7,'2022_06_20_154842_create_money_exchange_lists_table',1),(8,'2022_06_20_154843_create_money_exchange_rates_table',1),(9,'2022_06_20_154922_create_banks_table',1),(10,'2022_06_20_154933_create_bank_accounts_table',1),(11,'2022_06_20_154934_create_transactions_table',1),(12,'2022_06_20_154952_create_bank_account_transactions_table',1),(13,'2022_06_21_124503_create_settings_table',1),(14,'2022_07_02_141950_add_last_update_rate_date_to_money_exchange_lists_table',1),(15,'2022_07_02_183812_add_received_amount_to_transactions_table',1); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `money_exchange_lists` -- DROP TABLE IF EXISTS `money_exchange_lists`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `money_exchange_lists` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `exchange_from_currency_id` bigint unsigned DEFAULT NULL, `exchange_to_currency_id` bigint unsigned DEFAULT NULL, `calculation` enum('x','/') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'x', `current_rate` double(8,2) DEFAULT NULL, `user_id` bigint unsigned DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `last_updated_rate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `exchange_from_currency_id_exchange_to_currency_id` (`exchange_from_currency_id`,`exchange_to_currency_id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `money_exchange_lists` -- LOCK TABLES `money_exchange_lists` WRITE; /*!40000 ALTER TABLE `money_exchange_lists` DISABLE KEYS */; INSERT INTO `money_exchange_lists` VALUES (1,1,2,'x',4093.00,1,1,NULL,'2022-07-07 09:09:32','2022-07-07 09:12:32','2022-07-07 09:12:32'),(2,1,3,'x',39.93,1,1,NULL,'2022-07-07 09:09:39','2022-07-07 09:12:20','2022-07-07 09:12:20'),(3,2,1,'/',4104.00,1,1,NULL,'2022-07-07 09:09:50','2022-07-07 09:12:07','2022-07-07 09:12:07'),(4,2,3,'/',114.00,1,1,NULL,'2022-07-07 09:09:59','2022-07-07 09:11:55','2022-07-07 09:11:55'),(5,3,1,'/',36.13,1,1,NULL,'2022-07-07 09:10:14','2022-07-07 09:11:41','2022-07-07 09:11:41'),(6,3,2,'x',113.40,1,1,NULL,'2022-07-07 09:10:23','2022-07-07 09:11:33','2022-07-07 09:11:33'); /*!40000 ALTER TABLE `money_exchange_lists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `money_exchange_rates` -- DROP TABLE IF EXISTS `money_exchange_rates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `money_exchange_rates` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `money_exchange_list_id` bigint unsigned DEFAULT NULL, `exchange_rate` double(8,2) DEFAULT NULL, `user_id` bigint unsigned DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `money_exchange_rates` -- LOCK TABLES `money_exchange_rates` WRITE; /*!40000 ALTER TABLE `money_exchange_rates` DISABLE KEYS */; INSERT INTO `money_exchange_rates` VALUES (1,6,113.40,1,NULL,'2022-07-07 09:11:33','2022-07-07 09:11:33'),(2,5,36.13,1,NULL,'2022-07-07 09:11:41','2022-07-07 09:11:41'),(3,4,114.00,1,NULL,'2022-07-07 09:11:55','2022-07-07 09:11:55'),(4,3,4104.00,1,NULL,'2022-07-07 09:12:07','2022-07-07 09:12:07'),(5,2,39.93,1,NULL,'2022-07-07 09:12:20','2022-07-07 09:12:20'),(6,1,4093.00,1,NULL,'2022-07-07 09:12:32','2022-07-07 09:12:32'); /*!40000 ALTER TABLE `money_exchange_rates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_resets` -- DROP TABLE IF EXISTS `password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci 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 `personal_access_tokens` -- DROP TABLE IF EXISTS `personal_access_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `personal_access_tokens` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_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 `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `roles` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `deleted_at` timestamp NULL DEFAULT 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=3 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,'staff',NULL,'2022-07-07 09:02:18','2022-07-07 09:02:18'),(2,'admin',NULL,'2022-07-07 09:02:18','2022-07-07 09:02:18'); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `settings` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `settings_name_unique` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `settings` -- LOCK TABLES `settings` WRITE; /*!40000 ALTER TABLE `settings` DISABLE KEYS */; INSERT INTO `settings` VALUES (1,'title','Fast Money Exchange',NULL,'2022-07-07 09:02:18','2022-07-07 09:02:18'),(2,'logo','logo.png',NULL,'2022-07-07 09:02:18','2022-07-07 09:02:18'); /*!40000 ALTER TABLE `settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transactions` -- DROP TABLE IF EXISTS `transactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `transactions` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_level` smallint NOT NULL DEFAULT '1', `transaction_type` enum('cash_exchange','bank_deposit','bank_withdraw','staff_deposit','staff_withdraw') COLLATE utf8mb4_unicode_ci NOT NULL, `money_exchange_list_id` bigint unsigned DEFAULT NULL, `bank_account_id` bigint unsigned DEFAULT NULL, `fee` double NOT NULL DEFAULT '0', `amount` double DEFAULT NULL, `exchange_rate` double(8,2) DEFAULT NULL, `remain` double NOT NULL DEFAULT '0', `note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint unsigned DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `received_amount` double NOT NULL DEFAULT '0', `amount_after_exchange` double 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 `transactions` -- LOCK TABLES `transactions` WRITE; /*!40000 ALTER TABLE `transactions` DISABLE KEYS */; /*!40000 ALTER TABLE `transactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `users` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `allow_to_change_exchange_rate` tinyint(1) NOT NULL DEFAULT '0', `role_id` bigint unsigned DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_phone_unique` (`phone`) ) ENGINE=InnoDB AUTO_INCREMENT=3 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','070721355',NULL,'$2y$10$v0iImwq1sfIrp5VUBFJDN.7dY4ZuL5OHbGCLBHrW.flkg/EUffmpu',1,0,2,NULL,NULL,'2022-07-07 09:02:18','2022-07-07 09:02:18'),(2,'admin','001',NULL,'$2y$10$0HEbrLYmnH1fbRxomHbiIei83dW6NLe//iAg4ZoImVqBEVV0UjY9m',1,0,2,NULL,NULL,'2022-07-07 09:07:32','2022-07-07 09:07:32'); /*!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 2022-07-07 16:15:58