Skip to content

Commit

Permalink
taborientation - db changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrenn committed Mar 1, 2024
1 parent a23eeb8 commit b0b8451
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/db/schema-set-version.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ begin
end
$$ language plpgsql;

select set_database_version('010801030');
select set_database_version('010801040');
8 changes: 8 additions & 0 deletions core/db/schema-up-master.sql
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,13 @@ if get_database_version() < '010801030' then

end if;

if get_database_version() < '010801040' then

alter table USERS add column TAB_ORIENTATION CHARACTER VARYING(1024);

perform set_database_version('010801040');

end if;

end
$$;

0 comments on commit b0b8451

Please sign in to comment.