Skip to content

Commit

Permalink
fix db scheam revision 010801070
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrenn committed Oct 22, 2024
1 parent b075df8 commit 301a725
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/db/schema-up-master.sql
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ if get_database_version() < '010801060' then
UPDATE mass_mail SET store_messages = 'f';
ALTER TABLE mass_mail ALTER store_messages SET NOT NULL;

perform set_database_version('store_messages');
perform set_database_version('010801060');

end if;

Expand Down Expand Up @@ -109,6 +109,8 @@ if get_database_version() < '010801070' then
add constraint HYPERLINK_DEPARTMENTS_FKC
foreign key (DEPARTMENTS_FK)
references DEPARTMENT;

perform set_database_version('010801070');

end if;

Expand Down

0 comments on commit 301a725

Please sign in to comment.