-- MySQL dump 10.13 Distrib 8.0.34, for Linux (x86_64) -- -- Host: localhost Database: airport2023 -- ------------------------------------------------------ -- Server version 8.0.34-0ubuntu0.22.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 */; /*!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 `ahmadfatoni_apigenerator_data` -- DROP TABLE IF EXISTS `ahmadfatoni_apigenerator_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ahmadfatoni_apigenerator_data` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `endpoint` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `model` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `custom_format` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ahmadfatoni_apigenerator_data` -- LOCK TABLES `ahmadfatoni_apigenerator_data` WRITE; /*!40000 ALTER TABLE `ahmadfatoni_apigenerator_data` DISABLE KEYS */; /*!40000 ALTER TABLE `ahmadfatoni_apigenerator_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backend_access_log` -- DROP TABLE IF EXISTS `backend_access_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `backend_access_log` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `user_id` int unsigned NOT NULL, `ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backend_access_log` -- LOCK TABLES `backend_access_log` WRITE; /*!40000 ALTER TABLE `backend_access_log` DISABLE KEYS */; INSERT INTO `backend_access_log` VALUES (1,1,'127.0.0.1','2022-10-24 04:12:42','2022-10-24 04:12:42'),(2,1,'119.235.118.26','2023-07-03 10:01:27','2023-07-03 10:01:27'),(3,1,'119.235.118.26','2023-09-12 06:09:49','2023-09-12 06:09:49'),(4,1,'119.235.118.26','2023-09-20 10:48:40','2023-09-20 10:48:40'),(5,1,'119.235.118.26','2023-09-27 10:23:49','2023-09-27 10:23:49'); /*!40000 ALTER TABLE `backend_access_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backend_user_groups` -- DROP TABLE IF EXISTS `backend_user_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `backend_user_groups` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `is_new_user_default` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `name_unique` (`name`), KEY `code_index` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backend_user_groups` -- LOCK TABLES `backend_user_groups` WRITE; /*!40000 ALTER TABLE `backend_user_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `backend_user_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backend_user_preferences` -- DROP TABLE IF EXISTS `backend_user_preferences`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `backend_user_preferences` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `user_id` int unsigned NOT NULL, `namespace` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `group` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `item` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `user_item_index` (`user_id`,`namespace`,`group`,`item`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backend_user_preferences` -- LOCK TABLES `backend_user_preferences` WRITE; /*!40000 ALTER TABLE `backend_user_preferences` DISABLE KEYS */; /*!40000 ALTER TABLE `backend_user_preferences` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backend_user_roles` -- DROP TABLE IF EXISTS `backend_user_roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `backend_user_roles` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `is_system` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `role_unique` (`name`), KEY `role_code_index` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backend_user_roles` -- LOCK TABLES `backend_user_roles` WRITE; /*!40000 ALTER TABLE `backend_user_roles` DISABLE KEYS */; /*!40000 ALTER TABLE `backend_user_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backend_user_throttle` -- DROP TABLE IF EXISTS `backend_user_throttle`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `backend_user_throttle` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `user_id` int unsigned DEFAULT NULL, `ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attempts` int NOT NULL DEFAULT '0', `last_attempt_at` timestamp NULL DEFAULT NULL, `is_suspended` tinyint(1) NOT NULL DEFAULT '0', `suspended_at` timestamp NULL DEFAULT NULL, `is_banned` tinyint(1) NOT NULL DEFAULT '0', `banned_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `backend_user_throttle_user_id_index` (`user_id`), KEY `backend_user_throttle_ip_address_index` (`ip_address`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backend_user_throttle` -- LOCK TABLES `backend_user_throttle` WRITE; /*!40000 ALTER TABLE `backend_user_throttle` DISABLE KEYS */; INSERT INTO `backend_user_throttle` VALUES (1,1,'127.0.0.1',0,NULL,0,NULL,0,NULL),(2,1,'119.235.118.26',0,NULL,0,NULL,0,NULL),(3,1,'49.51.194.120',5,'2023-08-09 09:33:38',1,'2023-08-09 09:33:38',0,NULL),(4,1,'198.2.209.130',2,'2023-09-26 04:08:44',0,NULL,0,NULL); /*!40000 ALTER TABLE `backend_user_throttle` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backend_users` -- DROP TABLE IF EXISTS `backend_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `backend_users` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `login` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `activation_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `persist_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reset_password_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `is_activated` tinyint(1) NOT NULL DEFAULT '0', `role_id` int unsigned DEFAULT NULL, `activated_at` timestamp NULL DEFAULT NULL, `last_login` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `is_superuser` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `login_unique` (`login`), UNIQUE KEY `email_unique` (`email`), KEY `act_code_index` (`activation_code`), KEY `reset_code_index` (`reset_password_code`), KEY `admin_role_index` (`role_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backend_users` -- LOCK TABLES `backend_users` WRITE; /*!40000 ALTER TABLE `backend_users` DISABLE KEYS */; INSERT INTO `backend_users` VALUES (1,'Admin','Person','admin','admin@domain.tld','$2y$10$fGfsIo38M1WniqiIBeWtIe5jRnbAlufPqvbHZcIo45PZmvu/FIagS',NULL,'$2y$10$t/gbpSsY2rQzFcXD.UygduuexyU5YXOuY3TDldEnZz6m3CU2THvXy',NULL,'',1,2,NULL,'2023-09-27 10:23:48','2022-06-24 12:15:58','2023-09-27 10:23:48',NULL,1); /*!40000 ALTER TABLE `backend_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backend_users_groups` -- DROP TABLE IF EXISTS `backend_users_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `backend_users_groups` ( `user_id` int unsigned NOT NULL, `user_group_id` int unsigned NOT NULL, PRIMARY KEY (`user_id`,`user_group_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backend_users_groups` -- LOCK TABLES `backend_users_groups` WRITE; /*!40000 ALTER TABLE `backend_users_groups` DISABLE KEYS */; /*!40000 ALTER TABLE `backend_users_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cache` -- DROP TABLE IF EXISTS `cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cache` ( `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `expiration` int NOT NULL, UNIQUE KEY `cache_key_unique` (`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 */; /*!40000 ALTER TABLE `cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_theme_data` -- DROP TABLE IF EXISTS `cms_theme_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cms_theme_data` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `theme` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `cms_theme_data_theme_index` (`theme`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cms_theme_data` -- LOCK TABLES `cms_theme_data` WRITE; /*!40000 ALTER TABLE `cms_theme_data` DISABLE KEYS */; /*!40000 ALTER TABLE `cms_theme_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_theme_logs` -- DROP TABLE IF EXISTS `cms_theme_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cms_theme_logs` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `old_template` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `old_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `user_id` int DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `cms_theme_logs_type_index` (`type`), KEY `cms_theme_logs_theme_index` (`theme`), KEY `cms_theme_logs_user_id_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cms_theme_logs` -- LOCK TABLES `cms_theme_logs` WRITE; /*!40000 ALTER TABLE `cms_theme_logs` DISABLE KEYS */; /*!40000 ALTER TABLE `cms_theme_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_theme_templates` -- DROP TABLE IF EXISTS `cms_theme_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cms_theme_templates` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `source` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `file_size` int unsigned NOT NULL, `updated_at` datetime DEFAULT NULL, `deleted_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `cms_theme_templates_source_index` (`source`), KEY `cms_theme_templates_path_index` (`path`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cms_theme_templates` -- LOCK TABLES `cms_theme_templates` WRITE; /*!40000 ALTER TABLE `cms_theme_templates` DISABLE KEYS */; /*!40000 ALTER TABLE `cms_theme_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `deferred_bindings` -- DROP TABLE IF EXISTS `deferred_bindings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `deferred_bindings` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `master_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `master_field` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `slave_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `slave_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `pivot_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `session_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_bind` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `deferred_bindings_master_type_index` (`master_type`), KEY `deferred_bindings_master_field_index` (`master_field`), KEY `deferred_bindings_slave_type_index` (`slave_type`), KEY `deferred_bindings_slave_id_index` (`slave_id`), KEY `deferred_bindings_session_key_index` (`session_key`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `deferred_bindings` -- LOCK TABLES `deferred_bindings` WRITE; /*!40000 ALTER TABLE `deferred_bindings` DISABLE KEYS */; /*!40000 ALTER TABLE `deferred_bindings` 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` int unsigned NOT NULL AUTO_INCREMENT, `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `payload` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `failed_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 `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 `jobs` -- DROP TABLE IF EXISTS `jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `jobs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `payload` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint unsigned NOT NULL, `reserved_at` int unsigned DEFAULT NULL, `available_at` int unsigned NOT NULL, `created_at` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`) ) 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 `martin_forms_records` -- DROP TABLE IF EXISTS `martin_forms_records`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `martin_forms_records` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `group` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '(Empty)', `form_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `ip` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `unread` tinyint(1) NOT NULL DEFAULT '1', `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 `martin_forms_records` -- LOCK TABLES `martin_forms_records` WRITE; /*!40000 ALTER TABLE `martin_forms_records` DISABLE KEYS */; /*!40000 ALTER TABLE `martin_forms_records` 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(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=42 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,'2013_10_01_000001_Db_Deferred_Bindings',1),(2,'2013_10_01_000002_Db_System_Files',1),(3,'2013_10_01_000003_Db_System_Plugin_Versions',1),(4,'2013_10_01_000004_Db_System_Plugin_History',1),(5,'2013_10_01_000005_Db_System_Settings',1),(6,'2013_10_01_000006_Db_System_Parameters',1),(7,'2013_10_01_000007_Db_System_Add_Disabled_Flag',1),(8,'2013_10_01_000008_Db_System_Mail_Templates',1),(9,'2013_10_01_000009_Db_System_Mail_Layouts',1),(10,'2014_10_01_000010_Db_Jobs',1),(11,'2014_10_01_000011_Db_System_Event_Logs',1),(12,'2014_10_01_000012_Db_System_Request_Logs',1),(13,'2014_10_01_000013_Db_System_Sessions',1),(14,'2015_10_01_000014_Db_System_Mail_Layout_Rename',1),(15,'2015_10_01_000015_Db_System_Add_Frozen_Flag',1),(16,'2015_10_01_000016_Db_Cache',1),(17,'2015_10_01_000017_Db_System_Revisions',1),(18,'2015_10_01_000018_Db_FailedJobs',1),(19,'2016_10_01_000019_Db_System_Plugin_History_Detail_Text',1),(20,'2016_10_01_000020_Db_System_Timestamp_Fix',1),(21,'2017_08_04_121309_Db_Deferred_Bindings_Add_Index_Session',1),(22,'2017_10_01_000021_Db_System_Sessions_Update',1),(23,'2017_10_01_000022_Db_Jobs_FailedJobs_Update',1),(24,'2017_10_01_000023_Db_System_Mail_Partials',1),(25,'2017_10_23_000024_Db_System_Mail_Layouts_Add_Options_Field',1),(26,'2021_10_01_000025_Db_Add_Pivot_Data_To_Deferred_Bindings',1),(27,'2013_10_01_000001_Db_Backend_Users',2),(28,'2013_10_01_000002_Db_Backend_User_Groups',2),(29,'2013_10_01_000003_Db_Backend_Users_Groups',2),(30,'2013_10_01_000004_Db_Backend_User_Throttle',2),(31,'2014_01_04_000005_Db_Backend_User_Preferences',2),(32,'2014_10_01_000006_Db_Backend_Access_Log',2),(33,'2014_10_01_000007_Db_Backend_Add_Description_Field',2),(34,'2015_10_01_000008_Db_Backend_Add_Superuser_Flag',2),(35,'2016_10_01_000009_Db_Backend_Timestamp_Fix',2),(36,'2017_10_01_000010_Db_Backend_User_Roles',2),(37,'2018_12_16_000011_Db_Backend_Add_Deleted_At',2),(38,'2014_10_01_000001_Db_Cms_Theme_Data',3),(39,'2016_10_01_000002_Db_Cms_Timestamp_Fix',3),(40,'2017_10_01_000003_Db_Cms_Theme_Logs',3),(41,'2018_11_01_000001_Db_Cms_Theme_Templates',3); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rainlab_blog_categories` -- DROP TABLE IF EXISTS `rainlab_blog_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rainlab_blog_categories` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `parent_id` int unsigned DEFAULT NULL, `nest_left` int DEFAULT NULL, `nest_right` int DEFAULT NULL, `nest_depth` int DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `rainlab_blog_categories_slug_index` (`slug`), KEY `rainlab_blog_categories_parent_id_index` (`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rainlab_blog_categories` -- LOCK TABLES `rainlab_blog_categories` WRITE; /*!40000 ALTER TABLE `rainlab_blog_categories` DISABLE KEYS */; INSERT INTO `rainlab_blog_categories` VALUES (1,'Uncategorized','uncategorized',NULL,NULL,NULL,1,2,0,'2022-10-24 04:13:20','2022-10-24 04:13:20'); /*!40000 ALTER TABLE `rainlab_blog_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rainlab_blog_posts` -- DROP TABLE IF EXISTS `rainlab_blog_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rainlab_blog_posts` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `user_id` int unsigned DEFAULT NULL, `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `content_html` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `published_at` timestamp NULL DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post_item', PRIMARY KEY (`id`), KEY `rainlab_blog_posts_user_id_index` (`user_id`), KEY `rainlab_blog_posts_slug_index` (`slug`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rainlab_blog_posts` -- LOCK TABLES `rainlab_blog_posts` WRITE; /*!40000 ALTER TABLE `rainlab_blog_posts` DISABLE KEYS */; INSERT INTO `rainlab_blog_posts` VALUES (1,1,'First blog post','first-blog-post','The first ever blog post is here. It might be a good idea to update this post with some more relevant content.','This is your first ever **blog post**! It might be a good idea to update this post with some more relevant content.\r\n\r\nYou can edit this content by selecting **Blog** from the administration back-end menu.\r\n\r\n*Enjoy the good times!*','

This is your first ever blog post! It might be a good idea to update this post with some more relevant content.

\n

You can edit this content by selecting Blog from the administration back-end menu.

\n

Enjoy the good times!

','2022-10-24 04:13:20',1,'2022-10-24 04:13:20','2023-07-11 06:08:21',NULL,'post_item'),(2,1,'Туркменистан получил первый европейский грузовой самолет Airbus','turkmenistan-poluchil-pervyj-evropejskij-gruzovoj-samolet-airbus','Туркменистан получил первый европейский грузовой \r\nсамолет Airbus','Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus Туркменистан получил первый европейский грузовой \r\nсамолет Airbus','

Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus Туркменистан получил первый европейский грузовой\nсамолет Airbus

','2023-06-25 00:00:00',1,'2023-06-26 10:27:40','2023-06-26 10:27:40',NULL,'post_item'),(3,1,'wetwert','wetwert','wewetwetwet','wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet','

wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet

','2023-07-06 12:46:50',1,'2023-08-01 12:47:11','2023-08-01 12:47:11',NULL,'post_item'),(4,1,'sdfsdfsd','sdfsdfsd','wetwetwet wetwetwet wetwetwet','wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet','

wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet

','2023-07-03 12:47:31',1,'2023-08-01 12:47:39','2023-08-01 12:47:39',NULL,'post_item'),(5,1,'wetwetwet wetwetwet','wetwetwet-wetwetwet','wetwetwet wetwetwet','wetwetwet wetwetwet wetwetwet wetwetwet','

wetwetwet wetwetwet wetwetwet wetwetwet

','2023-07-06 12:47:55',1,'2023-08-01 12:48:04','2023-08-01 12:48:04',NULL,'post_item'),(6,1,'dfsdg','dfsdg','wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet','swetwetwet wetwetwet wetwetwet wetwetwet wetwetwet','

swetwetwet wetwetwet wetwetwet wetwetwet wetwetwet

','2023-07-07 12:48:16',1,'2023-08-01 12:48:28','2023-08-01 12:48:28',NULL,'post_item'),(7,1,'wetwetwet wetwetwet wetwetwet ru locale','wetwetwet-wetwetwet-wetwetwet','wetwetwet wetwetwet wetwetwet','wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet','

wetwetwet wetwetwet wetwetwet wetwetwet wetwetwet

','2023-07-06 12:48:41',1,'2023-08-01 12:48:49','2023-09-28 05:42:16',NULL,'post_item'); /*!40000 ALTER TABLE `rainlab_blog_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rainlab_blog_posts_categories` -- DROP TABLE IF EXISTS `rainlab_blog_posts_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rainlab_blog_posts_categories` ( `post_id` int unsigned NOT NULL, `category_id` int unsigned NOT NULL, PRIMARY KEY (`post_id`,`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rainlab_blog_posts_categories` -- LOCK TABLES `rainlab_blog_posts_categories` WRITE; /*!40000 ALTER TABLE `rainlab_blog_posts_categories` DISABLE KEYS */; INSERT INTO `rainlab_blog_posts_categories` VALUES (2,1); /*!40000 ALTER TABLE `rainlab_blog_posts_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rainlab_translate_attributes` -- DROP TABLE IF EXISTS `rainlab_translate_attributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rainlab_translate_attributes` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `model_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), KEY `rainlab_translate_attributes_locale_index` (`locale`), KEY `rainlab_translate_attributes_model_id_index` (`model_id`), KEY `rainlab_translate_attributes_model_type_index` (`model_type`) ) ENGINE=InnoDB AUTO_INCREMENT=179 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rainlab_translate_attributes` -- LOCK TABLES `rainlab_translate_attributes` WRITE; /*!40000 ALTER TABLE `rainlab_translate_attributes` DISABLE KEYS */; INSERT INTO `rainlab_translate_attributes` VALUES (1,'en','2','tps\\Airport\\Models\\PageHeader','{\"header\":\"Information for partners\",\"short_txt\":\"Service tariffs, cargo terminal services, information for airlines\",\"sub_menus\":[{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_.png\",\"sub_txt\":\"Service fees\",\"sub_short\":\"Full list of tariffs for airport services\",\"sub_slug\":\"tarify-obs-partnery\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_-1.png\",\"sub_txt\":\"Cargo Terminal\",\"sub_short\":\"About the cargo terminal. Reception, processing and dispatch of goods\",\"sub_slug\":\"kargo-terminal\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_-2.png\",\"sub_txt\":\"For Airlines\",\"sub_short\":\"Information about cooperation for potential partners\",\"sub_slug\":\"aviakompaniyam\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_-4.png\",\"sub_txt\":\"Special Equipment Service\",\"sub_short\":\"Ensuring the safety and smooth operation of the airport\",\"sub_slug\":\"sluzhba-spes\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_-3.png\",\"sub_txt\":\"SRSA\",\"sub_short\":\"Protection of passengers and personnel in emergency situations\",\"sub_slug\":\"avariyno-spasatel\",\"btn_txt\":\"More detailed\"}],\"file_btn\":\"\"}'),(2,'tm','2','tps\\Airport\\Models\\PageHeader','{\"header\":\"Hyzmatdaşlar üçin maglumat\",\"short_txt\":\"Hyzmatlaryň nyrhnamalary, ýük terminaly hyzmatlary, awiakompaniýalar üçin maglumat\",\"sub_menus\":[{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_.png\",\"sub_txt\":\"Hyzmat ediş nyrhnamalary\",\"sub_short\":\"Howa menzili hyzmatlary üçin nyrhlaryň doly sanawy\",\"sub_slug\":\"tarify-obs-partnery\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_-1.png\",\"sub_txt\":\"Kargo terminaly\",\"sub_short\":\"Harytlary kabul etmek, gaýtadan gözden geçirmek we ibermek\",\"sub_slug\":\"kargo-terminal\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_-2.png\",\"sub_txt\":\"Awiakompaniýalar üçin\",\"sub_short\":\"Hyzmatdaşlar üçin hyzmatdaşlyk barada maglumat\",\"sub_slug\":\"aviakompaniyam\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_-4.png\",\"sub_txt\":\"Ýörite tehniki gullugy\",\"sub_short\":\"Howa menziliniň howpsuzlygyny we işjeňligini üpjün etmek\",\"sub_slug\":\"sluzhba-spes\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/headers\\/sub\\/partner\\/Rectangle 15partner_-3.png\",\"sub_txt\":\"UGAHE gullugy\",\"sub_short\":\"Adatdan daşary ýagdaýlarda ýolagçylaryň we işgärleriň goraglylgyny üpjün etmek\",\"sub_slug\":\"avariyno-spasatel\",\"btn_txt\":\"Has giňişleýin\"}],\"file_btn\":\"\"}'),(3,'en','3','tps\\Airport\\Models\\PageHeader','{\"header\":\"About Us\",\"short_txt\":\"History, administration contacts, airport structure and current news\",\"sub_menus\":[{\"menu_img\":\"\\/headers\\/sub\\/about\\/about_1.png\",\"sub_txt\":\"History of Airport\",\"sub_short\":\"History of the development of the air fleet of Turkmenistan\",\"sub_slug\":\"istoriya\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/headers\\/sub\\/about\\/about_2.png\",\"sub_txt\":\"Adminstration and departments of Airport\",\"sub_short\":\"Airport contact information and services\",\"sub_slug\":\"administrasiya-struktura\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/headers\\/o-nas.jpg\",\"sub_txt\":\"News\",\"sub_short\":\"About the activities of the airport and related events\",\"sub_slug\":\"novosti\",\"btn_txt\":\"More detailed\"}],\"file_btn\":\"Download brochure\"}'),(4,'tm','3','tps\\Airport\\Models\\PageHeader','{\"header\":\"Biz barada\",\"short_txt\":\"Taryhy, administrasiýa bilen habarlaşmak, howa menziliniň gurluşy we häzirki täzelikler\",\"sub_menus\":[{\"menu_img\":\"\\/headers\\/sub\\/about\\/about_1.png\",\"sub_txt\":\"Howa menziliň taryhy\",\"sub_short\":\"Türkmenistanyň howa flotunyň ösüşiniň taryhy\",\"sub_slug\":\"istoriya\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/headers\\/sub\\/about\\/about_2.png\",\"sub_txt\":\"Adminstratsiýa we Howa Menziliň Gulluklary\",\"sub_short\":\"Halkara howa menzili bilen habarlaşmak üçin maglumatlar we hyzmatlar\",\"sub_slug\":\"administrasiya-struktura\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/headers\\/o-nas.jpg\",\"sub_txt\":\"Täzelikler\",\"sub_short\":\"Howa menziliniň ýerine ýetirýän işleri we şuňa meňzeş wakalar barada\",\"sub_slug\":\"novosti\",\"btn_txt\":\"Has giňişleýin\"}],\"file_btn\":\"Broşýurany göçürip al\"}'),(5,'en','2','RainLab\\Blog\\Models\\Post','{\"title\":\"\",\"slug\":\"\",\"content\":\"\",\"content_html\":\"\",\"excerpt\":\"\"}'),(6,'tm','2','RainLab\\Blog\\Models\\Post','{\"title\":\"\",\"slug\":\"\",\"content\":\"\",\"content_html\":\"\",\"excerpt\":\"\"}'),(7,'en','1','RainLab\\Blog\\Models\\Post','{\"title\":\"\",\"slug\":\"\",\"content\":\"\",\"content_html\":\"\",\"excerpt\":\"\"}'),(8,'tm','1','RainLab\\Blog\\Models\\Post','{\"title\":\"\",\"slug\":\"\",\"content\":\"\",\"content_html\":\"\",\"excerpt\":\"\"}'),(9,'en','4','tps\\Airport\\Models\\PageHeader','{\"header\":\"History of Airport\",\"short_txt\":\"History of the development of the air fleet of Turkmenistan\",\"sub_menus\":null,\"file_btn\":\"\"}'),(10,'tm','4','tps\\Airport\\Models\\PageHeader','{\"header\":\"Howa menziliň taryhy\",\"short_txt\":\"Türkmenistanyň howa flotunyň ösüşiniň taryhy\",\"sub_menus\":null,\"file_btn\":\"\"}'),(11,'en','1','tps\\Airport\\Models\\PageContent','{\"content\":\"

The First Airline<\\/strong><\\/p>\\r\\n\\r\\n

The history of civil aircraft of Turkmenistan originates from 1927 when the first airline, which has connected Chardzhou with Tashauz through Tourtkul and Novo-Urgench was opened. On this airline, the Chardzhou aviation enterprise used the four-seat passenger airplanes “Junkers” JU-13 purchased in Germany, and airplanes K-4 of Soviet production. In total 8 airplanes have been engaged. In 1932, the civil air fleet of Turkmenistan has been replenished with new Soviet passenger airplanes. These were six-seat К-5 and twelve-seat ANT-9. On their base in the same 1932, the air division which began to serve the airline Chardzhou-Tashauz directly, without intermediate airdromes was created in the Chardzhou airport.<\\/p>\\r\\n\\r\\n

The First Airport<\\/strong><\\/p>\\r\\n\\r\\n

The first airport in Ashgabat has been constructed in 1932, and in the end of 1934 there were formed two air divisions: one has been completed with airplanes Po-2 (for application in agriculture), and another one consisted of airplanes TB-3 (for transportation of cargoes). In particular, four-seat airplanes TB-3 flied to desert Kara Kum and served sulfuric mines Darvaza, delivering to workers food, water, equipment and taking out the lump sulphur. The airplane T-2 applied for the first time in Turkmenistan, transported for one flight to five tons of cargo. By the volume of freight traffic the division of these planes in 1938 has won the first place among divisions of civil aviation – both in the USSR, and in the whole world. In 1935, there was opened the new airline Ashkhabad-Tashauz connecting settlements Dargan-Ata, Sulfuric Factory, Darvaza, Leninsk, Kunya-Urgench, Tashauz. In December 1935 in Turkmenistan, there was organized the Authority of civil air fleet which extent of air-lines has made over 2 thousand kilometers. At the same time, in Tashauz and Krasnovodsk the light airplanes Po-2 appeared making flights in the most remote areas and settlements of the republic. In 1944, the aircraft depot of Turkmenistan has been replenished with first airplanes Li-2 by which the passengers and mail were transported from Ashgabat to Moscow through Baku, Astrakhan and Volgograd.<\\/p>\\r\\n\\r\\n

<\\/p>\\r\\n\\r\\n

Postwar development<\\/strong><\\/p>\\r\\n\\r\\n

Since 1946 in air-lines of the USSR and Turkmenistan (as the republic entering then in the structure of the USSR) the new Soviet airplanes Il-12, Il-14, An-2, Як-12 started to be used . In September 1956, the first regular flights were made by the first-born jet civil aircraft – passenger airplane Tu-104, and then on republic airlines there were planes Tu-114, Il-18, An-24. The powerful airliners have allowed to connect Turkmenistan by air-lines with the largest administrative and cultural centers of the USSR, capitals of union republics, resorts and other cities. From the beginning of 50th years, in the national economy of the republic there were widely applied helicopters. The aircraft is used in agriculture at processing of gardens and vineyards and defoliation of cotton. By the end of 60th years the civil aviation in Turkmenistan gets the crucial importance in transportation of passengers to a long distance as passengers\' capacity and load-carrying capacity of airplane fleet have increased, commercial speed of air transport has sharply increased. Having become the mass type of transport, the civil air fleet provides high rates of growth of transportations. If the volumes of transportations of passengers by railway transportation in the republic during the period from 1961 to 1981 has increased approximately in 2.1 times, automobile – in 3.4 times, the volumes of air has increased in 3.6 times. In 1981, the airplanes of civil aviation of Turkmenistan have processed 1.36 million hectares of seeding of agricultural crops (against 0.2 million hectares in 1960), their flying time on service of needs of national economy has made more than 314 thousand hours (against 36 thousand hours in 1960). In 1981 the total extent of air lines of union importance has reached 24.1 thousand kilometers, and lines of republican value – 3,35 thousand kilometers. The civil aviation of the Turkmen Soviet Socialist Republic had the newest airplanes Tu-154, Yak-40, Yak-42, An-24, An-26, the modern radio engineering and radar-tracking equipment allowing to accept airplanes at any time and under adverse meteorological conditions. Because of equipping of the airports with new means of radio navigation the frequency and regularity of flights have raised. There have been constructed the new and reconstructed air terminals in Chardzhou, Tashauz, Cheleken, Bekdash, Nebit-Dag.<\\/p>\\r\\n\",\"web_content\":null}'),(12,'tm','1','tps\\Airport\\Models\\PageContent','{\"content\":\"

Türkmenistanyň raýat awiasiýasynyň taryhy<\\/strong><\\/p>\\r\\n\\r\\n

Türkmenistanyň raýat awiasiýasynyň taryhy öz gözbaşyny 1927-nji ýyldan alyp gaýdýar, şol wagt Çärjewi Dörtgüliň we Täze Ürgenjiň üsti bilen Daşhowuza birleşdirilen ilkinji howa gatnawy açyldy. Bu howa ýolunda Çärjew awiakärhanasy Germaniýadan satyn alnan “Ýunkers” ÝU-13 dört orunlyk ýolagçy uçarlaryny we Sowet soýuzynda öndürilen K-4 uçarlaryny ulanypdyr. Jemi 8 uçar hereket edipdir.<\\/p>\\r\\n\\r\\n

Ilkinji howa menzili<\\/strong><\\/p>\\r\\n\\r\\n

1932-nji ýylda Türkmenistanyň raýat howa flotunyň üsti täze sowet ýolagçy uçarlary bilen ýetirilýär. Olar alty orunlyk K-5 we on iki orunlyk ANT9 uçarlardy. Olaryň binýadynda 1932-nji ýylda Çärjew howa menziliniň awiabölümçesi döredilýär, ol aralyk aerodromsyz, gönüden-göni Çärjew – Daşhowuz awiaýoluna hyzmat edip başlaýar. Aşgabat şäherinde ilkinji howa menzili 1932-nji ýylda gurulýar we 1934-nji ýylyň ahyrynda onda iki awiabölümçe açylýar: olaryň biri Po-2 uçarlary (oba hojalygynda ulanmak üçin) toplumlaşdyrylýar, beýlekisi bolsa, TB-3 (ýükleri daşamak) uçarlardan ybarat bolýar.<\\/p>\\r\\n\\r\\n

<\\/p>\\r\\n\\r\\n

1944-nji ýylda Türkmenistanyň awiaparkynyň üsti ilkinji Li-2 uçarlary bilen ýetirilýär, olarda Bakunyň, Astrahanyň we Wolgogradyň üsti bilen Aşgabatdan Moskwa ýolagçylary we poçtalary gatnadypdyrlar. 1946-njy ýyldan SSSR-iň we Türkmenistanyň (şol wagt SSSR-iň düzümine girýän respublika hökmünde) howa ýollarynda täze Il-12, Il-14, An-2, Ýak-12 sowet uçarlary ulanylyp başlaýar. 1956-njy ýylyň sentýabrynda ilkinji yzygiderli gatnawlary reaktiw raýat awiasiýasynyň ilkinjisi – Tu-114, Il-18, An-24 uçarlary peýda bolýar. Kuwwaty uçarlar Türkmenistany howa ýollary bilen SSSR-iň iri administratiw we medeni merkezleri, soýuz respublikalarynyň paýtagtlary, şypahana we beýleki şäherler bilen baglaşdyrmaga mümkinçilik berdi. 50-nji ýyllaryň başlaryndan respublikanyň halk hojalygynda dikuçarlar giňden peýdalanyp başlanýar. Awiasiýa oba hojalygynda baglar we üzümçilikler işlenende, gowaçalaryň defolýasiýasynda ulanylýar. 60-njy ýyllaryň ahyrynda Türkmenistanyň raýat awiasiýasy ýolagçylary uzak aralyklara gatnamakda möhüm ähmiýete eýe bolýär, uçar parkynyň ýolagçy sygymlylygynyň we ýük göterijiliginiň artanlygy sebäpli, awiaulagyň täjirçilik tizligi üzül-kesil ýokarlanýar. Ulagyň köpçülekleýin görnüşi bolmak bilen, raýat howa floty daşamalaryň ýokary ösüş depginini üpjün edýär.<\\/p>\\r\\n\",\"web_content\":null}'),(13,'en','1','tps\\Airport\\Models\\Accardion','{\"name\":\"Adminstration\",\"content\":[{\"accordion_inside_item\":\"

General e-mail<\\/p>\\r\\n\\r\\n

asb@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

General Director of the Airport<\\/p>\\r\\n\\r\\n

gendirector@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Deputy General Director<\\/p>\\r\\n\\r\\n

deputydirector@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Assistant to Airport Director<\\/p>\\r\\n\\r\\n

+993 12 234923<\\/p>\\r\\n\\r\\n

dirassistant@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of quality maintenance<\\/p>\\r\\n\\r\\n

+993 12 233540 ( факс )<\\/p>\\r\\n\\r\\n

+993 12 233490<\\/p>\\r\\n\\r\\n

quality@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Central operations and air control service<\\/p>\\r\\n\\r\\n

+993 12 234183<\\/p>\\r\\n\\r\\n

+993 12 443214<\\/p>\\r\\n\\r\\n

headops@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of Air Traffic Control<\\/p>\\r\\n\\r\\n

+993 12 230199<\\/p>\\r\\n\\r\\n

chiefatc@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of Regional Inspectorate for Flight Safety<\\/p>\\r\\n\\r\\n

+993 12 233354<\\/p>\\r\\n\\r\\n

chiefacc@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head HC ATC Airport<\\/p>\\r\\n\\r\\n

+993 12 233810<\\/p>\\r\\n\\r\\n

permission@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of Special equipment service<\\/p>\\r\\n\\r\\n

specialtransport@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of general affairs department<\\/p>\\r\\n\\r\\n

+993 12 234409<\\/p>\\r\\n\\r\\n

totaldep@ashgabatairport. gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of Central operations and air control Service<\\/p>\\r\\n\\r\\n

+993 12 236007<\\/p>\\r\\n\\r\\n

aviaoper@ashgabatairpotl.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of airport accounting department<\\/p>\\r\\n\\r\\n

+993 12 233792<\\/p>\\r\\n\\r\\n

accounting@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of airport cargo<\\/p>\\r\\n\\r\\n

+993 12 234592<\\/p>\\r\\n\\r\\n

cargo@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of contracts department of airport<\\/p>\\r\\n\\r\\n

+993 12 233347<\\/p>\\r\\n\\r\\n

contract@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of Airport VIP Services<\\/p>\\r\\n\\r\\n

+993 12 378575<\\/p>\\r\\n\\r\\n

vip@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Replaceable airport PDSA<\\/p>\\r\\n\\r\\n

+993 12 234446<\\/p>\\r\\n\\r\\n

ops@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of Airport transportation services<\\/p>\\r\\n\\r\\n

+993 12 230146<\\/p>\\r\\n\\r\\n

servicepas@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Airport lost and found<\\/p>\\r\\n\\r\\n

+993 12 232035<\\/p>\\r\\n\\r\\n

lostandfound@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Head of transportation services<\\/p>\\r\\n\\r\\n

servicepas@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Baggage services<\\/p>\\r\\n\\r\\n

+993 12 232035<\\/p>\\r\\n\\r\\n

servicepas@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"}],\"web_content\":[{\"col1\":[{\"header\":\"General e-mail\",\"info\":[{\"text\":\"asb@ashgabatairport.gov.tm\"}]},{\"header\":\"General Director of the Airport\",\"info\":[{\"text\":\"gendirector@ashgabatairport.gov.tm\"}]},{\"header\":\"Deputy General Director\",\"info\":[{\"text\":\"deputydirector@ashgabatairport.gov.tm\"}]},{\"header\":\"Assistant to Airport Director\",\"info\":[{\"text\":\"+993 12 234923\"},{\"text\":\"\\tdirassistant@ashgabatairport.gov.tm\"}]},{\"header\":\"Head of quality maintenance\",\"info\":[{\"text\":\"+993 12 233540 ( факс )\"},{\"text\":\"+993 12 233490\"},{\"text\":\"quality@ashgabatairport.gov.tm\"}]},{\"header\":\"Central operations and air control service\",\"info\":[{\"text\":\"+993 12 234183\"},{\"text\":\"+993 12 443214\"},{\"text\":\"headops@ashgabatairport.gov.tm\"}]},{\"header\":\"Head of Air Traffic Control\",\"info\":[{\"text\":\"+993 12 230199\"},{\"text\":\"\\tchiefatc@ashgabatairport.gov.tm\"}]},{\"header\":\"Head of Regional Inspectorate for Flight Safety\",\"info\":[{\"text\":\"+993 12 233354\"},{\"text\":\"chiefacc@ashgabatairport.gov.tm\"}]},{\"header\":\"Head HC ATC Airport\",\"info\":[{\"text\":\"+993 12 233810\"},{\"text\":\"permission@ashgabatairport.gov.tm\"}]},{\"header\":\"Head of Special equipment service\",\"info\":[{\"text\":\"specialtransport@ashgabatairport.gov.tm\"}]}],\"col2\":[{\"header\":\"Head of general affairs department\",\"info\":[{\"text\":\"+993 12 234409\"},{\"text\":\"totaldep@ashgabatairport. gov.tm\"}]},{\"header\":\"Head of Central operations and air control Service\",\"info\":[{\"text\":\"+993 12 236007\"},{\"text\":\"aviaoper@ashgabatairpotl.gov.tm\"}]},{\"header\":\"Head of airport accounting department\",\"info\":[{\"text\":\"+993 12 233792\"},{\"text\":\"accounting@ashgabatairport.gov.tm\"}]},{\"header\":\"Replaceable airport PDSA\",\"info\":[{\"text\":\"+993 12 234446\"},{\"text\":\"ops@ashgabatairport.gov.tm\"}]},{\"header\":\"Head of airport cargo\",\"info\":[{\"text\":\"+993 12 234592\"},{\"text\":\"cargo@ashgabatairport.gov.tm\"}]},{\"header\":\"Head of contracts department of airport\",\"info\":[{\"text\":\"+993 12 233347\"},{\"text\":\"contract@ashgabatairport.gov.tm\"}]},{\"header\":\"Head of Airport VIP Services\",\"info\":[{\"text\":\"+993 12 378575\"},{\"text\":\"vip@ashgabatairport.gov.tm\"}]},{\"header\":\"Head of Airport transportation services\",\"info\":[{\"text\":\"+993 12 230146\"},{\"text\":\"servicepas@ashgabatairport.gov.tm\"}]},{\"header\":\"Airport lost and found\",\"info\":[{\"text\":\"+993 12 232035\"},{\"text\":\"\\tlostandfound@ashgabatairport.gov.tm\"}]},{\"header\":\"Head of transportation services\",\"info\":[{\"text\":\"servicepas@ashgabatairport.gov.tm\"}]},{\"header\":\"Baggage services\",\"info\":[{\"text\":\"+993 12 232035\"},{\"text\":\"servicepas@ashgabatairport.gov.tm\"}]}]}]}'),(14,'tm','1','tps\\Airport\\Models\\Accardion','{\"name\":\"Administrasiýa\",\"content\":[{\"accordion_inside_item\":\"

Esasy elektron salgysy<\\/p>\\r\\n\\r\\n

asb@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň Baş direktory<\\/p>\\r\\n\\r\\n

gendirector@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň Baş direktorynyň orunbasary<\\/p>\\r\\n\\r\\n

deputydirector@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň Baş direktorynyň kömekçisi<\\/p>\\r\\n\\r\\n

+993 12 234923<\\/p>\\r\\n\\r\\n

dirassistant@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Uçuşlaryň howpsuzlygyny dolandyrmak we Hil bölüminiň başlygy<\\/p>\\r\\n\\r\\n

+993 12 233540 ( факс )<\\/p>\\r\\n\\r\\n

+993 12 233490<\\/p>\\r\\n\\r\\n

quality@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň Merkezi önümçilik-dispetçer gullugy<\\/p>\\r\\n\\r\\n

+993 12 234183<\\/p>\\r\\n\\r\\n

+993 12 443214<\\/p>\\r\\n\\r\\n

headops@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň howa hereketini dolandyryş gullugynyň başlygy<\\/p>\\r\\n\\r\\n

+993 12 230199<\\/p>\\r\\n\\r\\n

chiefatc@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa hereketini dolandyryş gullugy – Etrap merkeziniň başlygy<\\/p>\\r\\n\\r\\n

+993 12 233354<\\/p>\\r\\n\\r\\n

chiefacc@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa hereketiniň guramagyň bir bitewi ulgamynyň Baş merkeziniň raýat sektory - howa menzilinde<\\/p>\\r\\n\\r\\n

+993 12 233810<\\/p>\\r\\n\\r\\n

permission@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Ýöriteleşdirilen awtoulaglar gullugynyň başlygy<\\/p>\\r\\n\\r\\n

specialtransport@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň umumy bölüminiň başlygy<\\/p>\\r\\n\\r\\n

+993 12 234409<\\/p>\\r\\n\\r\\n

totaldep@ashgabatairport. gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň önümçilik-dispetçer gullugynyň başlygy<\\/p>\\r\\n\\r\\n

+993 12 236007<\\/p>\\r\\n\\r\\n

aviaoper@ashgabatairpotl.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Buhgalteriýa hasabaty bölüminiň başlygy<\\/p>\\r\\n\\r\\n

+993 12 233792<\\/p>\\r\\n\\r\\n

accounting@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Merkezi önümçilik dispetçeri<\\/p>\\r\\n\\r\\n

+993 12 234446<\\/p>\\r\\n\\r\\n

ops@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Poçta ýük daşamalaryna hyzmat edýän gullugynyň başlygy<\\/p>\\r\\n\\r\\n

+993 12 234592<\\/p>\\r\\n\\r\\n

cargo@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Şertnamalar bölüminiň başlygy<\\/p>\\r\\n\\r\\n

+993 12 233347<\\/p>\\r\\n\\r\\n

contract@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň VIP-yň başlygy<\\/p>\\r\\n\\r\\n

+993 12 378575<\\/p>\\r\\n\\r\\n

vip@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň ýolagçylara hyzmat ediş gullugynyň başlygy<\\/p>\\r\\n\\r\\n

+993 12 230146<\\/p>\\r\\n\\r\\n

servicepas@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Howa menziliň ýolagçylara hyzmat ediş gullugy – arz-şykaýat bölümi<\\/p>\\r\\n\\r\\n

+993 12 232035<\\/p>\\r\\n\\r\\n

lostandfound@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Ýolagçylara hyzmat edýän gullugynyň başlygy<\\/p>\\r\\n\\r\\n

servicepas@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"},{\"accordion_inside_item\":\"

Ýolagçylara hyzmat edýän gullugy<\\/p>\\r\\n\\r\\n

+993 12 232035<\\/p>\\r\\n\\r\\n

servicepas@ashgabatairport.gov.tm<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"}],\"web_content\":[{\"col1\":[{\"header\":\"Esasy elektron salgysy\",\"info\":[{\"text\":\"asb@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa menziliň Baş direktory\",\"info\":[{\"text\":\"gendirector@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa menziliň Baş direktorynyň orunbasary\",\"info\":[{\"text\":\"deputydirector@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa menziliň Baş direktorynyň kömekçisi\",\"info\":[{\"text\":\"+993 12 234923\"},{\"text\":\"dirassistant@ashgabatairport.gov.tm\"}]},{\"header\":\"Uçuşlaryň howpsuzlygyny dolandyrmak we Hil bölüminiň başlygy\",\"info\":[{\"text\":\"+993 12 233540 ( факс )\"},{\"text\":\"+993 12 233490\"},{\"text\":\"quality@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa menziliň Merkezi önümçilik-dispetçer gullugy\",\"info\":[{\"text\":\"+993 12 234183\"},{\"text\":\"+993 12 443214\"},{\"text\":\"headops@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa menziliň howa hereketini dolandyryş gullugynyň başlygy\",\"info\":[{\"text\":\"+993 12 230199\"},{\"text\":\"chiefatc@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa hereketini dolandyryş gullugy – Etrap merkeziniň başlygy\",\"info\":[{\"text\":\"+993 12 233354\"},{\"text\":\"chiefacc@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa hereketiniň guramagyň bir bitewi ulgamynyň Baş merkeziniň raýat sektory - howa menzilinde\",\"info\":[{\"text\":\"+993 12 233810\"},{\"text\":\"permission@ashgabatairport.gov.tm\"}]},{\"header\":\"Ýöriteleşdirilen awtoulaglar gullugynyň başlygy\",\"info\":[{\"text\":\"specialtransport@ashgabatairport.gov.tm\"}]}],\"col2\":[{\"header\":\"Howa menziliň umumy bölüminiň başlygy\",\"info\":[{\"text\":\"+993 12 234409\"},{\"text\":\"totaldep@ashgabatairport. gov.tm\"}]},{\"header\":\"Howa menziliň önümçilik-dispetçer gullugynyň başlygy\",\"info\":[{\"text\":\"+993 12 236007\"},{\"text\":\"aviaoper@ashgabatairpotl.gov.tm\"}]},{\"header\":\"Buhgalteriýa hasabaty bölüminiň başlygy\",\"info\":[{\"text\":\"+993 12 233792\"},{\"text\":\"accounting@ashgabatairport.gov.tm\"}]},{\"header\":\"Merkezi önümçilik dispetçeri\",\"info\":[{\"text\":\"+993 12 234446\"},{\"text\":\"ops@ashgabatairport.gov.tm\"}]},{\"header\":\"Poçta ýük daşamalaryna hyzmat edýän gullugynyň başlygy\",\"info\":[{\"text\":\"+993 12 234592\"},{\"text\":\"cargo@ashgabatairport.gov.tm\"}]},{\"header\":\"Şertnamalar bölüminiň başlygy\",\"info\":[{\"text\":\"+993 12 233347\"},{\"text\":\"contract@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa menziliň VIP-yň başlygy\",\"info\":[{\"text\":\"+993 12 378575\"},{\"text\":\"vip@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa menziliň ýolagçylara hyzmat ediş gullugynyň başlygy\",\"info\":[{\"text\":\"+993 12 230146\"},{\"text\":\"servicepas@ashgabatairport.gov.tm\"}]},{\"header\":\"Howa menziliň ýolagçylara hyzmat ediş gullugy – arz-şykaýat bölümi\",\"info\":[{\"text\":\"+993 12 232035\"},{\"text\":\"lostandfound@ashgabatairport.gov.tm\"}]},{\"header\":\"Ýolagçylara hyzmat edýän gullugynyň başlygy\",\"info\":[{\"text\":\"servicepas@ashgabatairport.gov.tm\"}]},{\"header\":\"Ýolagçylara hyzmat edýän gullugy\",\"info\":[{\"text\":\"+993 12 232035\"},{\"text\":\"servicepas@ashgabatairport.gov.tm\"}]}]}]}'),(15,'en','5','tps\\Airport\\Models\\PageHeader','{\"header\":\"Adminstration and departments of Airport\",\"short_txt\":\"Airport contact information and services\",\"sub_menus\":null,\"file_btn\":\"\"}'),(16,'tm','5','tps\\Airport\\Models\\PageHeader','{\"header\":\"Adminstratsiýa we Howa Menziliň Gulluklary\",\"short_txt\":\"Halkara howa menzili bilen habarlaşmak üçin maglumatlar we hyzmatlar\",\"sub_menus\":null,\"file_btn\":\"\"}'),(17,'en','3','tps\\Airport\\Models\\Menu','{\"name\":\"About Us\",\"sub_menu\":[{\"menu_title\":\"History of Airport\",\"sub_slug\":\"istoriya\"},{\"menu_title\":\"Adminstration\",\"sub_slug\":\"administrasiya-struktura\"},{\"menu_title\":\"News\",\"sub_slug\":\"novosti\"}]}'),(18,'tm','3','tps\\Airport\\Models\\Menu','{\"name\":\"Biz barada\",\"sub_menu\":[{\"menu_title\":\"Howa menziliň taryhy\",\"sub_slug\":\"istoriya\"},{\"menu_title\":\"Adminstratsiýa\",\"sub_slug\":\"administrasiya-struktura\"},{\"menu_title\":\"Täzelikler\",\"sub_slug\":\"novosti\"}]}'),(19,'en','1','tps\\Airport\\Models\\Flights','{\"name\":\"\",\"short\":\"\",\"flights\":null}'),(20,'tm','1','tps\\Airport\\Models\\Flights','{\"name\":\"\",\"short\":\"\",\"flights\":null}'),(21,'en','2','tps\\Airport\\Models\\Flights','{\"name\":\"\",\"short\":\"\",\"flights\":null,\"btn\":\"\"}'),(22,'tm','2','tps\\Airport\\Models\\Flights','{\"name\":\"\",\"short\":\"\",\"flights\":null,\"btn\":\"\"}'),(23,'en','6','tps\\Airport\\Models\\PageHeader','{\"header\":\"\",\"short_txt\":\"\",\"sub_menus\":null}'),(24,'tm','6','tps\\Airport\\Models\\PageHeader','{\"header\":\"\",\"short_txt\":\"\",\"sub_menus\":null}'),(25,'en','7','tps\\Airport\\Models\\PageHeader','{\"header\":\"Baggage Allowance\",\"short_txt\":\"Baggage transportation, damaged and lost luggage\",\"sub_menus\":null,\"file_btn\":\"\"}'),(26,'tm','7','tps\\Airport\\Models\\PageHeader','{\"header\":\"Goşlary geçirmegiň düzgünleri\",\"short_txt\":\"Ýük daşamak, zeper ýeten we ýitirilen goşlar\",\"sub_menus\":null,\"file_btn\":\"\"}'),(27,'en','2','tps\\Airport\\Models\\Accardion','{\"name\":\"Baggage allowance\",\"content\":[{\"accordion_inside_item\":\"

Business-class passengers are entitled to an average of 40 kilograms of luggage for free of charge, economy-class passengers - 20 kilograms of luggage. Hand luggage in business-class and economy class<\\/span>, as a rule, does not exceed 7 kilograms and the maximum dimensions of hand luggage should be no more than 50x40x20cm (including a bag with purchases from the Duty Free store weighing no more than 3 kg and a size of 40x30x15 cm).<\\/p>\\r\\n\\r\\n

Excess baggage – is a baggage with a weight or quantity which exceeds the free of charge allowance which is established by an airline for your class of service.<\\/p>\\r\\n\\r\\n

For excess baggage (dimensions of one piece of baggage exceeding 50x50x100 cm), the airline will charge an additional fee. After weighing and registration procedures in case of excess baggage an airport employee will indicate the necessary data and will ask to proceed to the cashier desk or to a representative of the airline to make a payment. Tariffs for transportation of excess baggage are set by carrier airlines. The payments are made at the airport tickets office or at the airline office. After payment is made a passenger should receive a baggage receipt, which must be presented to a registration employee, who will issue a boarding pass.<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"}],\"web_content\":null}'),(28,'tm','2','tps\\Airport\\Models\\Accardion','{\"name\":\"Rugsat berilýän goşlaryň möçberi\",\"content\":[{\"accordion_inside_item\":\"

Hökmany suratda öz awiakompaniýaňyzyň ýanyňyza almaga rugsat berýän goşlarynyň ölçeglerini anyklaň. Adatça, biznes-klasyň ýolagçylary tölegsiz  ortaça 40 kg., ekonom-klasyň ýolagçylary bolsa — 20 kg. ölçegdäki ýüki öz ýanlary bilen alyp bilýärler. Biznes-klasda we ekonom-klasda däp bolşuna görä el goşlary 7 kg., agyr bolmaly däl we el goşlaryň ölçegleri 50х40х20 sm-den geçmeli däl (şol sanda, 3kg-dan agyr we 40х30х15 sm-den uly bolmadyk Duty Free dükanlaryndan satyn alynan harytlar).<\\/p>\\r\\n\\r\\n

Möçberden artyk goşlar — bular agramy ýa-da mukdary siziň klasyňyz üçin awiakompaniýa tarapyndan mugt bellenen möçberden artyk goşlar hasaplanýar.\\r\\n\\t
Möçberden ýokary geçýän goşlar üçin (bir ýerlik goşuň göwrümi 50х50х100 sm-den artyk bolanda) awiakompaniýa goşmaça töleg alýar. Olaryň terezide agramy çekilensoň we resmileşdirilensoň howa menziliň işgäri zerur maglumatlary görkezip, sizi töleg kassasynyň ýa-da awiakompaniýanyň wekiliniň ýanyna ugradar. Artyk goşlaryň tölegi gatnawy amala aşyrýan kompaniýa tarapyndan kesgitlenýär. Töleg howa menziliniň kassasynda ýa-da awiakompaniýanyň ofisinde tölenýär, siz tölegli goşuň kwitansiýasyny alyp, ony hasaba alýan işgäre görkezmelisiňiz we ol size uçara münmek üçin talon berer.\\r\\n\\t
Awiakompaniýanyň ofisinde rugsat berilýän möçberden artyk el goşlaryny alyp gitmegiň şertlerini öňünden soramagy unutmaň!<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"}],\"web_content\":null}'),(29,'en','3','tps\\Airport\\Models\\Accardion','{\"name\":\"Damaged baggage\",\"content\":[{\"accordion_inside_item\":\"

If any damage to the baggage is noticed or some items are missing, please do not exit the baggage claim hall of the Ashgabat International Airport, and contact a responsible employee of the airport, located on the 1st floor of the arrival hall at the counter called \\\"Lost or damaged baggage\\\". The employee will fill out a necessary form and explain the further procedure to follow-up.<\\/p>\\r\\n\\r\\n

If you exit the baggage claim hall, without having a form, the decision on issuance of the form will be made only by a representative of the airline.<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"}],\"web_content\":null}'),(30,'tm','3','tps\\Airport\\Models\\Accardion','{\"name\":\"Goşlar zaýalan ýagdaýynda\",\"content\":[{\"accordion_inside_item\":\"

Goşlaryňyzyň zaýalanandygyny gören badyňyza ýa-da onuň ýetmeýän böleklerini bilen pursatyňyzda Aşgabat Halkara howa menziliniň el goşlary berilýän zalyndan daşyna çykman, howa menziliň birinji gatynda, ýolagçylaryň uçup gelýän zalyndaky  «Ýitirilen ýa-da zaýalanan goşlar» diýlip ýazylan ýerde oturýan işgärine ýüz tutmagyňyz hökmandyr.  \\r\\n\\t
Eger-de siz ykrarnama düzmän goşlary berilýän zalyndan çykyp gitseňiz, onda ykrarnama düzmek hakyndaky meseläni diňe ýük daşaýjy awiakompaniýanyň wekili çözüp biler. <\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"}],\"web_content\":null}'),(31,'en','4','tps\\Airport\\Models\\Accardion','{\"name\":\"Lost baggage\",\"content\":[{\"accordion_inside_item\":\"

In the cases of missing of baggage after baggage claim hall, please do not exit the baggage claim hall, and contact a baggage tracing department, located on the 1st floor in the arrival hall of the airport at the counter called \\\"Lost and damaged baggage\\\", and report the incident.<\\/p>\\r\\n\\r\\n

Baggage tracing department employee will fill out a special form. You will be informed later about the results of the investigation. Most airlines do not deliver the luggage that did not arrive on time to the residence address of a passenger, in order to fill out a statement of damaged baggage, and etc. An employee of the Baggage Tracing Department will contact you and report the date and time of delivery.<\\/p>\\r\\n\\r\\n

For any questions on the arrival and delivery of lost or unclaimed baggage at the Ashgabat International airport please contact the staff at the phone number: + 993 12 23-20-35.<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"}],\"web_content\":null}'),(32,'tm','4','tps\\Airport\\Models\\Accardion','{\"name\":\"Goşlar ýitirilen ýagdaýynda\",\"content\":[{\"accordion_inside_item\":\"

Goşlar berlenden soňra öz goşlaryňyzyň ýokdugyna, ýitendigine göz ýetiren badyňyza  olaryň berilýän zalyndan daşyna çykman, howa menziliň birinji gatynda, Aşgabat Halkara howa menziliniň ýolagçylarynyň uçup gelýän zalyndaky «Ýitirilen ýa-da zaýalanan goşlar» diýlip ýazylan ýerde oturýan işgärine bu bolan hadysa hakynda  şikaýat ediň.\\r\\n\\t
Goşlary gözleýän bölümiň işgäri ýörite resminamany doldurar. Gözlegiň netijesi barada size habar ýetiriler.\\r\\n\\t
Zerurlyk ýüze çykanda, goşlaryň zaýalanandygy ýa-da ş.m. barada ykrarnama düzmäge mümkinçilik bolar ýaly awiakompaniýalaryň köpüsi öz wagtynda gelmedik goşlary ýolagçynyň ýaşaýan salgysyna gowşurmagy amala aşyrmaýar. Goşlary gözleýän işgär siziň bilen habarlaşar we olaryň gowşuryljak senesini hem-de wagtyny mälim eder.\\r\\n\\t
Ýitirilen ýa-da alynmadyk goşlaryň tapylmagy ýa-da gowşurylmagy barada Aşgabat Halkara howa menziliniň işgärleri bilen şu aşakdaky telefon boýunça habarlaşyp bilersiňiz:<\\/p>\\r\\n\\r\\n

+ 993 12 23-20-35.<\\/p>\\r\\n\",\"step\":\"\",\"file\":\"\"}],\"web_content\":null}'),(35,'en','1','tps\\Airport\\Models\\Partner','{\"header\":\"Our Partners\"}'),(36,'tm','1','tps\\Airport\\Models\\Partner','{\"header\":\"Hyzmatdaşlarymyz\"}'),(37,'en','1','tps\\Airport\\Models\\ContentCard','{\"header\":\"Information for passengers\",\"short_txt\":\"Online scoreboard, flight schedules and useful information for passengers.\",\"btn_txt\":\"Read More\",\"description\":\"\"}'),(38,'tm','1','tps\\Airport\\Models\\ContentCard','{\"header\":\"Ýolagçylar üçin maglumat\",\"short_txt\":\"Onlaýn tablo, howa gatnawlarynyň tertibi we ýolagçylar üçin gerekli maglumatlar.\",\"btn_txt\":\"Doly\",\"description\":\"\"}'),(39,'en','2','tps\\Airport\\Models\\ContentCard','{\"header\":\"Information for partners\",\"short_txt\":\"Service tariffs, cargo terminal services, information for airlines.\",\"btn_txt\":\"Read more\",\"description\":\"\"}'),(40,'tm','2','tps\\Airport\\Models\\ContentCard','{\"header\":\"Hyzmatdaşlar üçin maglumat\",\"short_txt\":\"Hyzmatlaryň nyrhnamalary, ýük terminaly hyzmatlary, awiakompaniýalar üçin maglumat.\",\"btn_txt\":\"Doly\",\"description\":\"\"}'),(41,'en','3','tps\\Airport\\Models\\ContentCard','{\"header\":\"Ashgabat airport services\",\"short_txt\":\"Information about shops, food outlets, recreation areas, hotels and other services.\",\"btn_txt\":\"Read More\",\"description\":\"\"}'),(42,'tm','3','tps\\Airport\\Models\\ContentCard','{\"header\":\"Aşgabat howa menziliniň hyzmatlary\",\"short_txt\":\"Dükanlar, azyk nokatlary, dynç alyş ýerleri, myhmanhanalar we beýleki hyzmatlar barada maglumat.\",\"btn_txt\":\"Doly\",\"description\":\"\"}'),(43,'en','4','tps\\Airport\\Models\\ContentCard','{\"header\":\"About Ashgabat International Airport\",\"short_txt\":\"History, administration contacts, airport structure and current news.\",\"btn_txt\":\"Read more\",\"description\":\"\"}'),(44,'tm','4','tps\\Airport\\Models\\ContentCard','{\"header\":\"Aşgabat halkara howa menzili barada\",\"short_txt\":\"Taryhy, administrasiýa bilen habarlaşmak, howa menziliniň gurluşy we häzirki täzelikler.\",\"btn_txt\":\"Doly\",\"description\":\"\"}'),(45,'en','8','tps\\Airport\\Models\\PageHeader','{\"header\":\"Ashgabat airport services\",\"short_txt\":\"Information about shops, food outlets, recreation areas, hotels and other services\",\"sub_menus\":[{\"menu_img\":\"\\/uslugi\\/img.jpg\",\"sub_txt\":\"Shops and Cafes\",\"sub_short\":\"Shopping and food for a comfortable trip\",\"sub_slug\":\"magaziny\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/uslugi\\/img2.jpg\",\"sub_txt\":\"Child Zone\",\"sub_short\":\"Where to wait for a flight for young passengers\",\"sub_slug\":\"detskaya\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/uslugi\\/img3.jpg\",\"sub_txt\":\"CIP\",\"sub_short\":\"Superior lounge for VIPs\",\"sub_slug\":\"cip-zal\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/uslugi\\/img4.jpg\",\"sub_txt\":\"Transit Hotel \\\"Lachin\\\"\",\"sub_short\":\"Find the right hotel for your trip\",\"sub_slug\":\"oteli\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/uslugi\\/img5.jpg\",\"sub_txt\":\"Car parking\",\"sub_short\":\"Your car is under reliable supervision\",\"sub_slug\":\"parkovka\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/uslugi\\/img6.jpg\",\"sub_txt\":\"Luggage storage\",\"sub_short\":\"Safe luggage storage at the airport\",\"sub_slug\":\"kamera\",\"btn_txt\":\"More detailed\"},{\"menu_img\":\"\\/uslugi\\/img7.jpg\",\"sub_txt\":\"Health care\",\"sub_short\":\"24-hour emergency assistance to passengers\",\"sub_slug\":\"medsinskaya\",\"btn_txt\":\"More detailed\"}],\"file_btn\":\"\"}'),(46,'tm','8','tps\\Airport\\Models\\PageHeader','{\"header\":\"Aşgabat howa menziliniň hyzmatlary\",\"short_txt\":\"Dükanlar, azyk nokatlary, dynç alyş ýerleri, myhmanhanalar we beýleki hyzmatlar barada maglumat\",\"sub_menus\":[{\"menu_img\":\"\\/uslugi\\/img.jpg\",\"sub_txt\":\"Dükanlar we kаfeler\",\"sub_short\":\"Rahat syýahat üçin söwda etmek we azyk harytlary\",\"sub_slug\":\"magaziny\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/uslugi\\/img2.jpg\",\"sub_txt\":\"Çagalar üçin oýunlaryň meýdançasy\",\"sub_short\":\"Kiçijik ýolagçylar üçin uçuşa nirede garaşmaly\",\"sub_slug\":\"detskaya\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/uslugi\\/img3.jpg\",\"sub_txt\":\"CIP-zaly\",\"sub_short\":\"VIP-ler üçin ýokary amatlyklary bolan zal\",\"sub_slug\":\"cip-zal\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/uslugi\\/img4.jpg\",\"sub_txt\":\"Tranzit zolagyndaky «Laçyn» myhmanhanasy\",\"sub_short\":\"Syýahatyňyz üçin amatly myhmanhanany tapyň\",\"sub_slug\":\"oteli\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/uslugi\\/img5.jpg\",\"sub_txt\":\"Awtoulaglar üçin duralga\",\"sub_short\":\"Awtoulagyňyz ygtybarly gözegçilikde\",\"sub_slug\":\"parkovka\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/uslugi\\/img6.jpg\",\"sub_txt\":\"El goşlary saklanýan ýer\",\"sub_short\":\"Howa menzilinde goşlaryň howpsuzlygyny üpjün etmek\",\"sub_slug\":\"kamera\",\"btn_txt\":\"Has giňişleýin\"},{\"menu_img\":\"\\/uslugi\\/img7.jpg\",\"sub_txt\":\"Saglyk hyzmatlary\",\"sub_short\":\"Ýolagçylara 24 sagatlyk gyssagly medisina kömegini bermek\",\"sub_slug\":\"medsinskaya\",\"btn_txt\":\"Has giňişleýin\"}],\"file_btn\":\"\"}'),(47,'en','9','tps\\Airport\\Models\\PageHeader','{\"header\":\"Shops and Cafes\",\"short_txt\":\"Shopping and food for a comfortable trip\",\"sub_menus\":null,\"file_btn\":\"\"}'),(48,'tm','9','tps\\Airport\\Models\\PageHeader','{\"header\":\"Dükanlar we kаfeler\",\"short_txt\":\"Rahat syýahat üçin söwda etmek we azyk harytlary\",\"sub_menus\":null,\"file_btn\":\"\"}'),(49,'en','2','tps\\Airport\\Models\\PageContent','{\"content\":\"

Shops<\\/strong>\\r\\n\\t
You will enjoy shopping at the Ashgabat International Airport not only because of the variety of products offered, but because of the attractiveness of prices. Textiles, Turkmen carpets, alcoholic and soft drinks and Turkmen sweets. Welcome to our stores!<\\/p>\\r\\n\\r\\n

<\\/p>\\r\\n\\r\\n

Cafes<\\/strong><\\/p>\\r\\n\\r\\n

Cafes are located on the first and second floor of the terminal, as well as in the departure areas of international and domestic flights. Passengers will be offered light snacks, desserts, hot tea and coffee, as well as soft drinks. <\\/p>\\r\\n\\r\\n

<\\/p>\\r\\n\",\"web_content\":null}'),(50,'tm','2','tps\\Airport\\Models\\PageContent','{\"content\":\"

Dükanlar<\\/strong>\\r\\n\\t
Aşgabat Halkara howa menzilinde söwda etmek ýeke bir satylýan harytlaryň bolçulygy  üçin däl-de, eýsem olaryň bahasynyň özüne çekýänligi bilen hem amatlydyr. Tekstil matalary, türkmen halylary, alkogol hem-de sowadylan içgiler, şeýle-de türkmen nazy-nygmatlary näçe diýseňiz tapylýar ─ biziň dükanlarymyza hoş geldiňiz!<\\/p>\\r\\n\\r\\n

<\\/p>\\r\\n\\r\\n

Kafeler<\\/strong><\\/p>\\r\\n\\r\\n

Kafeler terminalyň birinji we ikinji gatynda, şeýle-de halkara hem-de ýerli gatnawlaryň uçuş zolaklarynda ýerleşýär. Ýolagçylara ýeňil tagamlar, desertler, gyzgyn çaý we kofe, şunuň ýaly-da sowadylan içgiler teklip edilýär<\\/p>\\r\\n\\r\\n

<\\/p>\\r\\n\",\"web_content\":null}'),(51,'en','10','tps\\Airport\\Models\\PageHeader','{\"header\":\"Child Zone\",\"short_txt\":\"Where to wait for a flight for young passengers\",\"sub_menus\":null,\"file_btn\":\"\"}'),(52,'tm','10','tps\\Airport\\Models\\PageHeader','{\"header\":\"Çagalar üçin oýunlaryň meýdançasy\",\"short_txt\":\"Kiçijik ýolagçylar üçin uçuşa nirede garaşmaly\",\"sub_menus\":null,\"file_btn\":\"\"}'),(53,'en','3','tps\\Airport\\Models\\PageContent','{\"content\":\"

Children\'s play area is located in the area for departing passengers after passport control. The play area is intended for children under 12 years. For the purpose of safety of the child, the parent or guardian must be present nearby when the child is in the play area.<\\/p>\\r\\n\\r\\n

\\r\\n\\t
Contact infromation:\\r\\n\\t
Telephone: 085\\r\\n\\t
E-mail: asb.airport.servicepas@online.tm<\\/a><\\/p>\\r\\n\\r\\n

<\\/p>\\r\\n\",\"web_content\":null}'),(54,'tm','3','tps\\Airport\\Models\\PageContent','{\"content\":\"

Çagalar üçin oýunlaryň meýdançasy ýolagçylaryň pasport gözegçiliginden geçenden soňky zolakda ýerleşýär.Diňe barlagdan geçen ýolagçylar öz çagalaryny bu meýdançada her hili oýunlary güýmäp bilerler. Çagalaryň howpsuzlygyny goramak maksady bilen olaryň ene-atalary ýa-da ýakyn hossarlary çagalaryň oýunlara güýmenýän wagtlary bu meýdançadan uzaga gitmeli däldirler.<\\/p>\\r\\n\\r\\n

\\r\\n\\t
Habarlaşmak üçin:\\r\\n\\t
Telefon: 085\\r\\n\\t
E-mail:
asb.airport.servicepas@online.tm<\\/a><\\/p>\\r\\n\\r\\n

<\\/p>\\r\\n\",\"web_content\":null}'),(55,'en','11','tps\\Airport\\Models\\PageHeader','{\"header\":\"CIP\",\"short_txt\":\"Superior lounge for VIPs\",\"sub_menus\":null,\"file_btn\":\"\"}'),(56,'tm','11','tps\\Airport\\Models\\PageHeader','{\"header\":\"CIP-zaly\",\"short_txt\":\"VIP-ler üçin ýokary amatlyklary bolan zal\",\"sub_menus\":null,\"file_btn\":\"\"}'),(57,'en','4','tps\\Airport\\Models\\PageContent','{\"content\":\"

The hall is intended for passengers who value personal time, space and personal service of a premium level to spend time in comfort. The CIP-hall is open within 24 hours and is located in the left wing of Terminal 2.<\\/p>\\r\\n\\r\\n

Contact information:<\\/p>\\r\\n\\r\\n

Telephone: +99312 23-26-81<\\/p>\\r\\n\\r\\n

Terminal-2 tel: +99312 37-87-37<\\/p>\\r\\n\\r\\n

Fax: +993 12 23 49 12<\\/p>\\r\\n\\r\\n

E-mail: asb.airport.cip@online.tm<\\/p>\\r\\n\",\"web_content\":null}'),(58,'tm','4','tps\\Airport\\Models\\PageContent','{\"content\":\"

CIP- zaly öz wagtyna, daş töwerigine we şahsy hyzmatlaryna ýokary baha berýän ýolgaçylar üçin niýetlenendir. Bu ýerde ýolagçylar üçin öz howa gatnawyna oňaýly garaşmak we  rahatlykdan lezzet almak mümkinçiligi döredilendir. CIP- zaly gije-gündiz işleýändir we Terminal 2 çep ganatynda ýerleşýändir.<\\/p>\\r\\n\\r\\n

Habarlaşmak üçin:<\\/p>\\r\\n\\r\\n

Telefon: +99312 23-26-81<\\/p>\\r\\n\\r\\n

Terminal-2 tel: +99312 37-87-37 <\\/p>\\r\\n\\r\\n

Faks: +993 12 23 49 12<\\/p>\\r\\n\\r\\n

E-mail: asb.airport.cip@online.tm<\\/p>\\r\\n\",\"web_content\":null}'),(59,'en','12','tps\\Airport\\Models\\PageHeader','{\"header\":\"Transit Hotel Lachin\",\"short_txt\":\"Find the right hotel for your trip\",\"sub_menus\":null,\"file_btn\":\"\"}'),(60,'tm','12','tps\\Airport\\Models\\PageHeader','{\"header\":\"Tranzit zolagyndaky «Laçyn» myhmanhanasy\",\"short_txt\":\"Syýahatyňyz üçin amatly myhmanhanany tapyň\",\"sub_menus\":null,\"file_btn\":\"\"}'),(61,'en','5','tps\\Airport\\Models\\PageContent','{\"content\":\"

Transit Hotel Lachin<\\/strong><\\/p>\\r\\n\\r\\n

Hotel Lachin has opened its doors in August 2009 and its outward appearance resembles the outstretched wings of a hovering Turkmen falcon - Lachin, that gave the name to the hotel. Hotel is located in very attractive area - just five minute drive to the airport and to the city center Our hotel can simultaneously accommodate 200 guests.<\\/p>\\r\\n\\r\\n

We are pleased to invite guests and visitors of the hotel for dinner at any time until 23:00 pm, offering a menu «a-la-carte» with a wide selection of international and Turkmen national cuisine.<\\/p>\\r\\n\\r\\n

Guests staying in our hotel for more than 10 days are offered with a small gift from the hotel chef.<\\/p>\\r\\n\\r\\n

For our partners and regular guests, we offer an opportunity to have lunch or dinner outside of regular hours and on pre-arranged time.<\\/p>\\r\\n\\r\\n

Business Center on the ground floor of the hotel is equipped with everything you need: computers, printers (black and white, color), scanners and other office equipment. At the request of guests for small presentations, trainings and seminars hotel \\\"Lachin\\\" has a conference hall for 40 seats and avails a projector, whiteboard, markers and flagpoles. Moreover, wireless internet is at your service 24 hours.<\\/p>\\r\\n\\r\\n

With prior arrangement of 24 hours, you can use the shuttle service to and from the airport, in addition, by prior arrangement of 2 days – you may reserve the services of CIP lounge in the Ashgabat International airport.<\\/p>\\r\\n\\r\\n

Fitness center at \\\"Lachin\\\" hotel offers the services of a professional masseur.<\\/p>\\r\\n\\r\\n

Payment for hotel accommodation will be charged in accordance with the standard checkout time - 12:00 local time;<\\/p>\\r\\n\\r\\n

Standard arrival and registration of guests at the hotel - 12:00;<\\/p>\\r\\n\\r\\n

Check out time from the hotel - 12:00;<\\/p>\\r\\n\\r\\n

In case of check-out delay, the payment for accommodation will be charged as following;<\\/p>\\r\\n\\r\\n

- not more than 6 hours after checkout time (12:00-18:00) - half the rate of the room category;<\\/p>\\r\\n\\r\\n

- more than 6 hours after checkout time (18:00-12:00) - the total rate of the next day;<\\/p>\\r\\n\\r\\n

For accommodations of less than one day the rate will be charged for the room category for full day from the time of registration (12:00) regardless of the time of the check-out.<\\/p>\\r\\n\\r\\n

\\r\\n\\t\r\n

','Отели','page_information','[]'),(6,'2023-07-21 10:47:31','2023-09-26 09:16:03',NULL,'

До Международного аэропорта Ашхабада легко добраться на машине. При движении по городским дорогам необходимо воспользоваться вывесками - АЭРОПОРТ. В среднем дорога из центра города Ашхабад до Международного аэропорта занимает не более 20–25 минут, в зависимости от маршрута и времени суток.\r\n
Пользуйтесь парковкой Международного аэропорта Ашхабад!\r\n
Парковочный комплекс Международного аэропорта Ашхабад работает круглосуточно.

\r\n\r\n

\r\n
Более подробную информацию о парковках и информацию об услугах парковочного комплекса аэропорта, можете получить по справочным номерам телефонов :\r\n
+993 12 23-38-45, 23-38-47, 92-06-13, 92-06-14.

\r\n\r\n

','Парковка машин','page_information','[]'),(7,'2023-07-21 10:51:39','2023-09-26 09:24:34',NULL,'

В международном аэропорту города Ашхабад круглосуточно функционирует 3 медицинских пункта (2 в международном и 1 местном терминале), оснащенные необходимыми оборудованиями, инструментами и медикаментами для профилактики и оказания необходимой первичной помощи, как для сотрудников аэропорта, пассажиров так и для посетителей аэровокзала. При показаниях и необходимой госпитализации в городские и центральные медицинские учреждения имеется автомобиль скорой помощи. Персонал медицинского центра, а также соответствующие службы прошли необходимое обучение и готовы к любым чрезвычайным ситуациям.

\r\n\r\n

Контактная информация:

\r\n\r\n

Телефон: +993 12 378631\r\n
Факс: +993 12 232042

\r\n\r\n

E-mail: asb.airport.medical@online.tm

','Медицинская помощь','page_information','[]'),(8,'2023-07-21 10:55:54','2023-09-26 09:29:14',NULL,'

Камера хранения располагается на первом этаже нового Международного аэропорта Ашхабад и работает круглосуточно для пассажиров международных рейсов. Стоимость хранения зависит от количества багажа и его габаритов.  

\r\n\r\n

Контакты: 

\r\n\r\n

Телефон: 085\r\n
E-mail: asb.airport.lostandfound@online.tm

','Камера хранения','page_information','[]'),(9,'2023-07-27 05:54:42','2023-07-27 05:54:42',NULL,'

Международный аэропорт Ашхабад приветствует партнеров и предлагает следующие услуги:

\r\n\r\n

Авиакомпаниям
Надежные взаимоотношения на долгую перспективу. Уникальную возможность выполнения технических посадокНизкую стоимость заправки авиатоплива.

\r\n\r\n


Грузоперевозчикам
Полный комплекс услуг по наземному обслуживанию грузов, складские услуги.

\r\n\r\n

\r\n
\r\n

','Международный аэропорт Ашхабад приветствует партнеров и предлагает следующие услуги:','page_information',NULL),(10,'2023-07-27 06:18:21','2023-09-21 07:01:04',NULL,'

На сегодняшний день грузовой терминал, расположенный в Международном аэропорту Ашхабада, является одним из самых современных наземных объектов в регионе. Общая площадь грузового терминала составляет 17 620 м2 и рассчитан на обработку 200 000 тонн грузов в год.

\r\n\r\n

Качество широкого спектра обслуживания, предлагаемых терминалом, соответствует международным стандартам и предоставляет все виды услуг, необходимые международным наземным перевозчикам. Грузовой терминал работает круглосуточно и без выходных и предлагает полный комплекс услуг по приему, оформлению, хранению и отправке всех видов грузов, в том числе опасных. На грузовом терминале груз проходит таможенное оформление и отправляется в другие местные и международные аэропорты транзитом с ашхабадского терминала. В грузовом терминале аэропорта для удобства клиентов расположены представительства авиакомпаний, оказывающих услуги по перевозке грузов.

\r\n\r\n

Оформление и размещение опасных грузов на грузовом терминале осуществляется в соответствии с рекомендациями Международной ассоциации воздушного транспорта (IATA).

\r\n\r\n

При перевозке ценных грузов используются специальные технологии для обеспечения высокого уровня безопасности. Такие грузы хранятся в специальных помещениях, оборудованных видеонаблюдением, сигнализацией, огнетушителями, приборами контроля температуры и влажности воздуха.

\r\n\r\n

Для работы с тяжелыми грузами используются многотонные погрузчики, а для хранения небольших грузов предусмотрены специально оборудованные площадки. Грузовой терминал оснащен оборудованием видеонаблюдения, позволяющим следить за ходом работ и использовать полученные данные в дальнейшем.

\r\n\r\n

В настоящее время грузовой терминал сотрудничает с крупными международными кампаниями как CargoLux, Belawia, Fly Dubai, China Southern Airlines Company Limited, S7 Airlines, Turkish Airlines и др.

','Карго терминал','page_information','[]'),(11,'2023-07-27 06:25:45','2023-09-21 06:56:49',NULL,'

К сведению авиакомпаний

\r\n\r\n

Международный аэропорт Ашхабад сообщает, о вводе упрощенных процедур для транзитных полетов без посадки на гражданских аэродромах Туркменистана, рейсов вне расписания, заявка подаётся по форме 1 не позднее, чем за 12 часов до выполнения рейса. Для полетов с посадкой на гражданских аэродромах Туркменистана, рейсов вне расписания, заявка подается по форме 2 не позднее, чем за 24 часа до посадки. 

\r\n\r\n

Благодаря своему выгодному расположению и наличию разветвленной маршрутной сети Международный аэропорт Ашхабад традиционно обслуживает значительное количество пассажиров и грузов. Международный аэропорт Ашхабад располагает двумя взлетно-посадочными полосами. По техническим характеристикам летное поле относится к аэродромам класса «4F»

\r\n\r\n

Взлетно-посадочная полоса 12R - 30L введена в эксплуатацию в 2015 году, имеет цементобетонное покрытие. Ее длина 3800 метров, ширина 60 метров. Магнитные курсы посадки 115 и 295. ИВПП с обоих курсов обеспечивает посадки воздушных судов по II категории ICAO.  Характеристики радиотехнического и светосигнального оборудования, средства УВД, оснащение полосы позволяют обеспечивать производство посадки воздушных судов в сложных метеоусловиях. Допущен к эксплуатации по установленным минимумам круглосуточно.

\r\n\r\n

Взлетно-посадочная полоса 12L - 30R введена в эксплуатацию в 2017 году, имеет цементобетонное покрытие. Ее длина 3800 метров, ширина 45 метров. Магнитные курсы посадки 115 и 295. ИВПП с обоих курсов обеспечивает посадки воздушных судов по II категории ICAO.  Характеристики радиотехнического и светосигнального оборудования, средства УВД, оснащение полосы позволяют обеспечивать производство посадки воздушных судов в сложных метеоусловиях. Допущен к эксплуатации по установленным минимумам круглосуточно.

','Авиакомпаниям','page_information','[]'),(12,'2023-07-27 11:15:39','2023-10-10 11:52:25',NULL,'

Международный аэропорт Ашхабад представляет вниманию пассажиров бизнес-класса специальную эксклюзивную услугу - Business Lounge.

\r\n\r\n

Business Lounge — уютный зал, где предоставляется возможность ощутить наше гостеприимство и комфортно ожидать посадку на свой рейс, наслаждаться спокойствием, избегая шума и суеты общей зоны ожидания. Наслаждаясь обстановкой, окруженные заботой персонала, пассажиры бизнес-класса нашего аэропорта проходят все предполетные формальности за минимальное время с максимальным комфортом.

\r\n\r\n

К услугам пассажиров бизнес-класса предоставляется:

\r\n\r\n

• индивидуальная стойка регистрации в здании терминала;\r\n
• услуга «fast track» (регистрация на авиарейс, таможенный и паспортный контроль в ускоренном режиме и без очередей);\r\n
• сопровождение и размещение в комфортабельном зале ожидания, где пассажирам будут предложены различные напитки (прохладительные, чай, кофе);\r\n
• питание по системе «шведский стол», свежие фрукты, десерт;\r\n
• свежая пресса, бесплатный Wi-Fi, цифровое телевидение;

\r\n\r\n

• конференц-услуги: телефонная связь, факс, принтер, ксерокс, сканер;\r\n
• комната отдыха (мягкие и удобные диваны и телевизор);\r\n
• комната матери и ребёнка;\r\n
• молитвенные комнаты;\r\n
• возможность принять душ;\r\n
• бильярдная;\r\n
• сопровождение до выхода на посадку;\r\n
• содействие представителей Business Lounge по всем возникающим вопросам (предоставление своевременной информации о вылете рейсов, вызов медицинского работника и др).

','Бизнес-зал','page_information','[]'),(13,'2023-08-16 10:01:53','2023-10-13 07:37:32',NULL,'

Международный аэропорт Ашхабад приветствует партнеров и предлагает следующие услуги:

\r\n\r\n

Авиакомпаниям\r\n
Надежные взаимоотношения на долгую перспективу. Уникальную возможность выполнения технических посадокНизкую стоимость заправки авиатоплива.

\r\n\r\n

Грузоперевозчикам\r\n
Полный комплекс услуг по наземному обслуживанию грузов, складские услуги.

\r\n\r\n
Ниже вы можете ознакомиться с тарифами на наши услуги.
','Tarif content','page_information','[{\"header\":\"\\u041c\\u0435\\u0436\\u0434\\u0443\\u043d\\u0430\\u0440\\u043e\\u0434\\u043d\\u044b\\u0439 \\u0430\\u044d\\u0440\\u043e\\u043f\\u043e\\u0440\\u0442 \\u0410\\u0448\\u0445\\u0430\\u0431\\u0430\\u0434 \\u043f\\u0440\\u0438\\u0432\\u0435\\u0442\\u0441\\u0442\\u0432\\u0443\\u0435\\u0442 \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u043e\\u0432 \\u0438 \\u043f\\u0440\\u0435\\u0434\\u043b\\u0430\\u0433\\u0430\\u0435\\u0442 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0435 \\u0443\\u0441\\u043b\\u0443\\u0433\\u0438:\",\"Text\":\"\",\"type\":\"header\"},{\"header\":\"\\u0410\\u0432\\u0438\\u0430\\u043a\\u043e\\u043c\\u043f\\u0430\\u043d\\u0438\\u044f\\u043c\",\"Text\":\"\\u041d\\u0430\\u0434\\u0435\\u0436\\u043d\\u044b\\u0435 \\u0432\\u0437\\u0430\\u0438\\u043c\\u043e\\u043e\\u0442\\u043d\\u043e\\u0448\\u0435\\u043d\\u0438\\u044f \\u043d\\u0430 \\u0434\\u043e\\u043b\\u0433\\u0443\\u044e \\u043f\\u0435\\u0440\\u0441\\u043f\\u0435\\u043a\\u0442\\u0438\\u0432\\u0443. \\u0423\\u043d\\u0438\\u043a\\u0430\\u043b\\u044c\\u043d\\u0443\\u044e \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u044c \\u0432\\u044b\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u044f \\u0442\\u0435\\u0445\\u043d\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0445 \\u043f\\u043e\\u0441\\u0430\\u0434\\u043e\\u043a\\u041d\\u0438\\u0437\\u043a\\u0443\\u044e \\u0441\\u0442\\u043e\\u0438\\u043c\\u043e\\u0441\\u0442\\u044c \\u0437\\u0430\\u043f\\u0440\\u0430\\u0432\\u043a\\u0438 \\u0430\\u0432\\u0438\\u0430\\u0442\\u043e\\u043f\\u043b\\u0438\\u0432\\u0430.\",\"type\":\"col\"},{\"header\":\"\\u0413\\u0440\\u0443\\u0437\\u043e\\u043f\\u0435\\u0440\\u0435\\u0432\\u043e\\u0437\\u0447\\u0438\\u043a\\u0430\\u043c\",\"Text\":\"\\u041f\\u043e\\u043b\\u043d\\u044b\\u0439 \\u043a\\u043e\\u043c\\u043f\\u043b\\u0435\\u043a\\u0441 \\u0443\\u0441\\u043b\\u0443\\u0433 \\u043f\\u043e \\u043d\\u0430\\u0437\\u0435\\u043c\\u043d\\u043e\\u043c\\u0443 \\u043e\\u0431\\u0441\\u043b\\u0443\\u0436\\u0438\\u0432\\u0430\\u043d\\u0438\\u044e \\u0433\\u0440\\u0443\\u0437\\u043e\\u0432, \\u0441\\u043a\\u043b\\u0430\\u0434\\u0441\\u043a\\u0438\\u0435 \\u0443\\u0441\\u043b\\u0443\\u0433\\u0438.\",\"type\":\"col\"}]'),(14,'2023-08-16 10:02:21','2023-08-16 10:36:47','2023-08-16 10:36:47','

Авиакомпаниям\r\n
Надежные взаимоотношения на долгую перспективу. Уникальную возможность выполнения технических посадокНизкую стоимость заправки авиатоплива.

','Tarif content col','page_information',NULL),(15,'2023-08-16 10:02:37','2023-08-16 10:36:47','2023-08-16 10:36:47','

Грузоперевозчикам\r\n
Полный комплекс услуг по наземному обслуживанию грузов, складские услуги.

','Tarif Content col2','page_information',NULL),(16,'2023-08-16 10:49:32','2023-08-16 10:57:35',NULL,'

\r\n \r\n

','Online Table','page_information','[]'); /*!40000 ALTER TABLE `tps_airport_page_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tps_airport_partners` -- DROP TABLE IF EXISTS `tps_airport_partners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tps_airport_partners` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `images` text COLLATE utf8mb4_unicode_ci, `note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `header` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'partner', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tps_airport_partners` -- LOCK TABLES `tps_airport_partners` WRITE; /*!40000 ALTER TABLE `tps_airport_partners` DISABLE KEYS */; INSERT INTO `tps_airport_partners` VALUES (1,'2023-06-25 18:36:30','2023-06-26 05:38:11',NULL,'[{\"logo\":\"\\/partners\\/partners.png\",\"logo_note\":\"1\"},{\"logo\":\"\\/partners\\/partner2.png\",\"logo_note\":\"\"},{\"logo\":\"\\/partners\\/partner3.png\",\"logo_note\":\"\"},{\"logo\":\"\\/partners\\/partner4.png\",\"logo_note\":\"\"},{\"logo\":\"\\/partners\\/partner5.png\",\"logo_note\":\"\"},{\"logo\":\"\\/partners\\/partner6.png\",\"logo_note\":\"\"}]','Наши партнеры','Наши партнеры','partner'); /*!40000 ALTER TABLE `tps_airport_partners` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `vdomah_blogviews_views` -- DROP TABLE IF EXISTS `vdomah_blogviews_views`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `vdomah_blogviews_views` ( `views` int NOT NULL, `post_id` int unsigned NOT NULL, PRIMARY KEY (`post_id`), KEY `vdomah_blogviews_views_post_id_index` (`post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `vdomah_blogviews_views` -- LOCK TABLES `vdomah_blogviews_views` WRITE; /*!40000 ALTER TABLE `vdomah_blogviews_views` DISABLE KEYS */; INSERT INTO `vdomah_blogviews_views` VALUES (38,1),(115,2),(2,3),(5,4),(10,5),(106,6),(32,7); /*!40000 ALTER TABLE `vdomah_blogviews_views` 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 2023-10-16 6:02:52