Fixed test database

This commit is contained in:
Lukas Metzger 2018-03-24 15:18:15 +01:00
parent 6ec9c81c32
commit 8d24d6e6e1

View file

@ -103,6 +103,14 @@ CREATE TABLE `permissions` (
`user_id` int(11) NOT NULL `user_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `permissions`
--
INSERT INTO `permissions` (`domain_id`, `user_id`) VALUES
(1, 2),
(2, 2);
-- -------------------------------------------------------- -- --------------------------------------------------------
-- --
@ -175,7 +183,7 @@ CREATE TABLE `users` (
-- --
-- Dumping data for table `users` -- Dumping data for table `users`
--$2y$10$MktCI4XcfD0FpIFSkxex6OVifnIw3Nqw6QJueWmjVte99wx6XGBoq --
INSERT INTO `users` (`id`, `name`, `backend`, `type`, `password`) VALUES INSERT INTO `users` (`id`, `name`, `backend`, `type`, `password`) VALUES
(1, 'admin', 'native', 'admin', '$2y$10$9iIDHWgjY0pEsz8pZLXPx.gkMNDxTMzb7U0Um5hUGjKmUUHWQNXcW'), (1, 'admin', 'native', 'admin', '$2y$10$9iIDHWgjY0pEsz8pZLXPx.gkMNDxTMzb7U0Um5hUGjKmUUHWQNXcW'),
@ -218,7 +226,7 @@ ALTER TABLE `domains`
-- Indexes for table `permissions` -- Indexes for table `permissions`
-- --
ALTER TABLE `permissions` ALTER TABLE `permissions`
ADD PRIMARY KEY (`user_id`); ADD PRIMARY KEY (`user_id`, `domain_id`);
-- --
-- Indexes for table `records` -- Indexes for table `records`