Skip to content
Snippets Groups Projects
Commit eac88a38 authored by Simon Künzel's avatar Simon Künzel
Browse files

Fix db schema comment for pgloader

parent db6760bb
No related branches found
No related tags found
No related merge requests found
Pipeline #5887 passed
......@@ -431,7 +431,8 @@ CREATE VIEW "videos" AS
FROM "videos_data"
JOIN "lectures_data" ON ("lectures_data"."id" = "lecture_id")
JOIN "courses_data" ON ("courses_data"."id" = "course_id")
WHERE NOT ("videos_data"."deleted" OR "lectures_data"."deleted" OR "courses_data"."deleted");
WHERE NOT ("videos_data"."deleted" OR "lectures_data"."deleted" OR "courses_data"."deleted")
-- TODO the semicolon is missing here, because pgloader apparently can<insert apostrophe>t properly handle comments (I can?t even write an apostrophe here?!)
*/
CREATE VIEW "sorterrorlog" AS
SELECT *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment