forked from mevdschee/php-crud-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mevdschee#244 from karllhughes/master
Making mysql and postgres test suites adaptable
- Loading branch information
Showing
11 changed files
with
2,496 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
-- 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` text 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, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; | ||
|
||
INSERT INTO `countries` (`id`, `name`) VALUES | ||
(1, 'Left'), | ||
(2, 'Right'); | ||
|
||
DROP TABLE IF EXISTS `events`; | ||
CREATE TABLE `events` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`name` varchar(255) NOT NULL, | ||
`datetime` datetime 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', 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, | ||
`properties` text NOT NULL, | ||
`created_at` datetime NOT NULL, | ||
`deleted_at` datetime NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; | ||
|
||
INSERT INTO `products` (`id`, `name`, `price`, `properties`, `created_at`) VALUES | ||
(1, 'Calculator', '23.01', '{"depth":false,"model":"TRX-120","width":100,"height":null}', '1970-01-01 01:01:01'); | ||
|
||
DROP TABLE IF EXISTS `barcodes`; | ||
CREATE TABLE `barcodes` ( | ||
`id` int(11) NOT NULL AUTO_INCREMENT, | ||
`product_id` int(11) NOT NULL, | ||
`hex` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, | ||
`bin` varbinary(255) NOT NULL, | ||
PRIMARY KEY (`id`), | ||
CONSTRAINT `barcodes_ibfk_1` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; | ||
|
||
INSERT INTO `barcodes` (`id`, `product_id`, `hex`, `bin`) VALUES | ||
(1, 1, '00ff01', UNHEX('00ff01')); | ||
|
||
-- 2016-11-05 13:11:47 |
Oops, something went wrong.