Skip to content
Snippets Groups Projects
Commit 9532db13 authored by RomanSteinberg's avatar RomanSteinberg
Browse files

FIX: sample.sql operators order due to faculty constraint

parent 7b8c0d89
Branches
Tags
No related merge requests found
......@@ -50,6 +50,14 @@ INSERT INTO `accounts` (`ID`, `Login`, `Password`, `EMail`, `UserRoleID`, `Activ
(23, 'teacher7', '7b21848ac9af35be0ddb2d6b9fc3851934db8420', 'teacher7@mail.ru', 2, NULL, 1, NULL),
(24, 'teacher8', '7b21848ac9af35be0ddb2d6b9fc3851934db8420', 'teacher8@mail.ru', 2, NULL, 1, NULL);
--
-- Дамп данных таблицы `faculties`
--
INSERT INTO `faculties` (`ID`, `Name`, `Abbr`) VALUES
(1, 'Институт математики, механики и компьютерных наук', 'Мехмат'),
(2, 'Юридический факультет', 'Юрфак');
--
-- Дамп данных таблицы `departments`
--
......@@ -184,14 +192,6 @@ INSERT INTO `disciplines_teachers` (`ID`, `DisciplineID`, `TeacherID`) VALUES
(6, 6, 8),
(10, 7, 1);
--
-- Дамп данных таблицы `faculties`
--
INSERT INTO `faculties` (`ID`, `Name`, `Abbr`) VALUES
(1, 'Институт математики, механики и компьютерных наук', 'Мехмат'),
(2, 'Юридический факультет', 'Юрфак');
--
-- Дамп данных таблицы `job_positions`
--
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment