Skip to content
Snippets Groups Projects
Commit fae9d1b1 authored by srosse's avatar srosse
Browse files

OO-2538: reset the status code of resource in 11.2.0 database upgrade

parent 2b7c2aaf
No related branches found
No related tags found
No related merge requests found
...@@ -113,3 +113,7 @@ create view o_gp_contactext_v as ( ...@@ -113,3 +113,7 @@ create view o_gp_contactext_v as (
(bgroup.participantsintern=1 and bg_member.g_role='participant') (bgroup.participantsintern=1 and bg_member.g_role='participant')
); );
-- reset status code
update o_repositoryentry set statuscode=0 where statuscode>0;
...@@ -119,3 +119,10 @@ create view o_gp_contactext_v as ( ...@@ -119,3 +119,10 @@ create view o_gp_contactext_v as (
or or
(bgroup.participantsintern>0 and bg_member.g_role='participant') (bgroup.participantsintern>0 and bg_member.g_role='participant')
); );
-- reset status code
update o_repositoryentry set statuscode=0 where statuscode>0;
...@@ -120,3 +120,9 @@ create view o_gp_contactext_v as ( ...@@ -120,3 +120,9 @@ create view o_gp_contactext_v as (
(bgroup.participantsintern=true and bg_member.g_role='participant') (bgroup.participantsintern=true and bg_member.g_role='participant')
); );
-- reset status code
update o_repositoryentry set statuscode=0 where statuscode>0;
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