Skip to content
Snippets Groups Projects
Commit 33a78df2 authored by Bartek Wrona's avatar Bartek Wrona
Browse files

Fixed drop query to avoid error when view does not exist yet

parent 11cda7cc
No related branches found
No related tags found
4 merge requests!456Release candidate v1 24,!230Setup monitoring with pghero,!135Enable postgres monitoring on CI server,!33[BW]: fixes to found bugs
This commit is part of merge request !33. Comments created here will be created in the context of that merge request.
......@@ -585,7 +585,7 @@ def setup(db):
db.query_no_return(sql)
sql = """
DROP VIEW public.vw_hive_posts;
DROP VIEW IF EXISTS public.vw_hive_posts;
CREATE OR REPLACE VIEW public.vw_hive_posts
AS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment