- FastAPI backend with JWT authentication - MySQL database with full schema - Docker Compose orchestration - CSV data import for 43,208 airports and 519,999 aircraft - Complete PPR management API - Modernized replacement for PHP-based system
133 lines
5.0 KiB
SQL
133 lines
5.0 KiB
SQL
/*M!999999\- enable the sandbox mode */
|
|
-- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for debian-linux-gnu (x86_64)
|
|
--
|
|
-- Host: sasaprod.pattinson.org Database: pprdevdb
|
|
-- ------------------------------------------------------
|
|
-- Server version 9.2.0
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
|
/*!40101 SET NAMES utf8mb4 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
|
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
|
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
|
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
|
|
|
--
|
|
-- Table structure for table `aircraft`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `aircraft`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `aircraft` (
|
|
`icao24` text,
|
|
`registration` text,
|
|
`manufacturericao` text,
|
|
`typecode` text,
|
|
`manufacturername` text,
|
|
`model` text,
|
|
`clean_reg` text GENERATED ALWAYS AS (regexp_replace(`registration`,_utf8mb4'[^a-zA-Z0-9]',_utf8mb4'')) STORED,
|
|
KEY `reg_idx` (`registration`(8)),
|
|
KEY `clean_idx` (`clean_reg`(8))
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `airports`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `airports`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `airports` (
|
|
`icao` text NOT NULL,
|
|
`iata` text,
|
|
`name` text NOT NULL,
|
|
`country` text NOT NULL,
|
|
KEY `icao_idx` (`icao`(4)),
|
|
KEY `iata_idx` (`iata`(3))
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `journal`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `journal`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `journal` (
|
|
`id` bigint NOT NULL AUTO_INCREMENT,
|
|
`ppr_id` int NOT NULL,
|
|
`entry` text NOT NULL,
|
|
`user` text NOT NULL,
|
|
`ip` text NOT NULL,
|
|
`entry_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
PRIMARY KEY (`id`),
|
|
KEY `id_idx` (`ppr_id`) USING BTREE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=422 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `submitted`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `submitted`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `submitted` (
|
|
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
|
|
`status` enum('NEW','CONFIRMED','CANCELED','LANDED','DELETED','DEPARTED') CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT 'NEW',
|
|
`ac_reg` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
|
`ac_type` varchar(32) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
|
`ac_call` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
|
|
`captain` varchar(64) NOT NULL,
|
|
`fuel` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
|
|
`in_from` varchar(64) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
|
|
`eta` datetime NOT NULL,
|
|
`pob_in` int NOT NULL,
|
|
`out_to` varchar(64) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
|
|
`etd` datetime DEFAULT NULL,
|
|
`pob_out` int DEFAULT NULL,
|
|
`email` varchar(128) DEFAULT NULL,
|
|
`phone` varchar(16) DEFAULT NULL,
|
|
`notes` varchar(2000) DEFAULT NULL,
|
|
`landed_dt` datetime DEFAULT NULL,
|
|
`departed_dt` datetime DEFAULT NULL,
|
|
`created_by` varchar(16) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
|
|
`submitted_dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
UNIQUE KEY `id` (`id`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=271 DEFAULT CHARSET=latin1;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
|
--
|
|
-- Table structure for table `users`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `users`;
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
/*!40101 SET character_set_client = utf8mb4 */;
|
|
CREATE TABLE `users` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`username` varchar(50) NOT NULL,
|
|
`password` varchar(255) NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `username` (`username`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|
|
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
|
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
|
|
|
-- Dump completed on 2025-10-21 15:56:53
|