-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VKT(Backend & Frontend): Merge fixes & database dump update
- Loading branch information
Showing
9 changed files
with
40 additions
and
22 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 |
---|---|---|
|
@@ -392,18 +392,17 @@ SELECT exam_event_id, (SELECT max(person_id) FROM person), | |
'[email protected]', '0404040404', null, null, null, null | ||
FROM exam_event; | ||
|
||
-- Insert enrollment appointment | ||
-- INSERT INTO enrollment_appointment(person_id, | ||
-- skill_oral, skill_textual, skill_understanding, | ||
-- partial_exam_speaking, partial_exam_speech_comprehension, partial_exam_writing, partial_exam_reading_comprehension, | ||
-- status, digital_certificate_consent, email, phone_number, street, postal_code, town, country) | ||
-- VALUES (SELECT max(person_id) FROM person), | ||
-- true, true, true, | ||
-- true, true, true, true, | ||
-- 'COMPLETED', true, | ||
-- '[email protected]', '0404040404', null, null, null, null; | ||
|
||
|
||
-- Insert enrollment appointment | ||
INSERT INTO examiner(version, oid, email, phone_number, last_name, first_name, nickname, exam_language_finnish, exam_language_swedish, is_public) | ||
VALUES (1, '1.2.246.init-1', '[email protected]', '04040404040', 'Tessilä', 'Testi', 'Tessa', true, true, true); | ||
|
||
-- Insert enrollment appointment | ||
INSERT INTO enrollment_appointment(person_id, examiner_id, | ||
skill_oral, skill_textual, skill_understanding, | ||
partial_exam_speaking, partial_exam_speech_comprehension, partial_exam_writing, partial_exam_reading_comprehension, | ||
status, digital_certificate_consent, email, phone_number, street, postal_code, town, country) | ||
VALUES (null, 1, | ||
true, true, true, | ||
true, true, true, true, | ||
'CONTACT_CREATED', true, | ||
'[email protected]', '0404040404', null, null, null, null); |
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
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