-- phpMyAdmin SQL Dump -- version 4.9.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Mar 31, 2020 at 12:07 PM -- Server version: 10.4.10-MariaDB -- PHP Version: 7.3.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 */; -- -- Database: `toursman_demo` -- CREATE DATABASE IF NOT EXISTS `toursman_demo` DEFAULT CHARACTER SET utf8 COLLATE utf8_czech_ci; USE `toursman_demo`; -- -------------------------------------------------------- -- -- Table structure for table `areas` -- DROP TABLE IF EXISTS `areas`; CREATE TABLE IF NOT EXISTS `areas` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_czech_ci NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci; -- -------------------------------------------------------- -- -- Table structure for table `boundarypoints` -- DROP TABLE IF EXISTS `boundarypoints`; CREATE TABLE IF NOT EXISTS `boundarypoints` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `lat` decimal(10,8) NOT NULL, `lon` decimal(11,8) NOT NULL, `area_id` int(11) NOT NULL, PRIMARY KEY (`ID`), KEY `area_id` (`area_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; CREATE TABLE IF NOT EXISTS `categories` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_czech_ci NOT NULL, PRIMARY KEY (`ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci; -- -------------------------------------------------------- -- -- Table structure for table `images` -- DROP TABLE IF EXISTS `images`; CREATE TABLE IF NOT EXISTS `images` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_czech_ci NOT NULL, `place_id` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `place_id` (`place_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci; -- -------------------------------------------------------- -- -- Table structure for table `places` -- DROP TABLE IF EXISTS `places`; CREATE TABLE IF NOT EXISTS `places` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8_czech_ci NOT NULL, `lat` decimal(10,8) NOT NULL, `lon` decimal(11,8) NOT NULL, `description` text COLLATE utf8_czech_ci NOT NULL, `area_id` int(11) NOT NULL, `category_id` int(11) NOT NULL, PRIMARY KEY (`ID`), KEY `area_id` (`area_id`), KEY `category_id` (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_czech_ci; -- -- Constraints for dumped tables -- -- -- Constraints for table `boundarypoints` -- ALTER TABLE `boundarypoints` ADD CONSTRAINT `boundarypoints_ibfk_1` FOREIGN KEY (`area_id`) REFERENCES `areas` (`ID`); -- -- Constraints for table `images` -- ALTER TABLE `images` ADD CONSTRAINT `images_ibfk_1` FOREIGN KEY (`place_id`) REFERENCES `places` (`ID`) ON DELETE SET NULL ON UPDATE NO ACTION; -- -- Constraints for table `places` -- ALTER TABLE `places` ADD CONSTRAINT `places_ibfk_1` FOREIGN KEY (`area_id`) REFERENCES `areas` (`ID`), ADD CONSTRAINT `places_ibfk_2` FOREIGN KEY (`category_id`) REFERENCES `categories` (`ID`); COMMIT; /*!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 */;