123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- -- Adminer 4.2.4 MySQL dump
-
- SET NAMES utf8;
- SET time_zone = '+00:00';
- SET foreign_key_checks = 0;
- SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
-
- DROP TABLE IF EXISTS `categories`;
- CREATE TABLE `categories` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(255) NOT NULL,
- `icon` blob NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-
- INSERT INTO `categories` (`id`, `name`, `icon`) VALUES
- (1, 'announcement', NULL),
- (2, 'article', NULL);
-
- DROP TABLE IF EXISTS `comments`;
- CREATE TABLE `comments` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `post_id` int(11) NOT NULL,
- `message` varchar(255) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `post_id` (`post_id`),
- CONSTRAINT `comments_ibfk_1` FOREIGN KEY (`post_id`) REFERENCES `posts` (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-
- INSERT INTO `comments` (`id`, `post_id`, `message`) VALUES
- (1, 1, 'great'),
- (2, 1, 'fantastic'),
- (3, 2, 'thank you'),
- (4, 2, 'awesome');
-
- DROP TABLE IF EXISTS `posts`;
- CREATE TABLE `posts` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `user_id` int(11) NOT NULL,
- `category_id` int(11) NOT NULL,
- `content` varchar(255) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `category_id` (`category_id`),
- KEY `user_id` (`user_id`),
- CONSTRAINT `posts_ibfk_3` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`),
- CONSTRAINT `posts_ibfk_4` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-
- INSERT INTO `posts` (`id`, `user_id`, `category_id`, `content`) VALUES
- (1, 1, 1, 'blog started'),
- (2, 1, 2, 'It works!');
-
- DROP TABLE IF EXISTS `post_tags`;
- CREATE TABLE `post_tags` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `post_id` int(11) NOT NULL,
- `tag_id` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `post_id` (`post_id`),
- KEY `tag_id` (`tag_id`),
- CONSTRAINT `post_tags_ibfk_1` FOREIGN KEY (`post_id`) REFERENCES `posts` (`id`),
- CONSTRAINT `post_tags_ibfk_2` FOREIGN KEY (`tag_id`) REFERENCES `tags` (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-
- INSERT INTO `post_tags` (`id`, `post_id`, `tag_id`) VALUES
- (1, 1, 1),
- (2, 1, 2),
- (3, 2, 1),
- (4, 2, 2);
-
- DROP TABLE IF EXISTS `tags`;
- CREATE TABLE `tags` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(255) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-
- INSERT INTO `tags` (`id`, `name`) VALUES
- (1, 'funny'),
- (2, 'important');
-
- DROP TABLE IF EXISTS `users`;
- CREATE TABLE `users` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `username` varchar(255) NOT NULL,
- `password` varchar(255) NOT NULL,
- `location` point NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-
- INSERT INTO `users` (`id`, `username`, `password`, `location`) VALUES
- (1, 'user1', 'pass1', null),
- (2, 'user2', 'pass2', null);
-
- DROP TABLE IF EXISTS `countries`;
- CREATE TABLE `countries` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(255) NOT NULL,
- `shape` polygon NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-
- INSERT INTO `countries` (`id`, `name`, `shape`) VALUES
- (1, 'Left', ST_GeomFromText('POLYGON ((30 10, 40 40, 20 40, 10 20, 30 10))')),
- (2, 'Right', ST_GeomFromText('POLYGON ((70 10, 80 40, 60 40, 50 20, 70 10))'));
-
- DROP TABLE IF EXISTS `events`;
- CREATE TABLE `events` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(255) NOT NULL,
- `datetime` datetime(3) NOT NULL,
- `visitors` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-
- INSERT INTO `events` (`id`, `name`, `datetime`, `visitors`) VALUES
- (1, 'Launch', '2016-01-01 13:01:01.111', 0);
-
- DROP VIEW IF EXISTS `tag_usage`;
- CREATE VIEW `tag_usage` AS select `name`, count(`name`) AS `count` from `tags`, `post_tags` where `tags`.`id` = `post_tags`.`tag_id` group by `name` order by `count` desc, `name`;
-
- DROP TABLE IF EXISTS `products`;
- CREATE TABLE `products` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(255) NOT NULL,
- `price` decimal(10,2) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-
- INSERT INTO `products` (`id`, `name`, `price`) VALUES
- (1, 'Calculator', '23.01');
-
- -- 2016-11-05 13:11:47
|