#67: Relations database schema

This commit is contained in:
jendib
2016-03-03 23:54:48 +01:00
parent f927193ae9
commit 7e983bebb9
7 changed files with 93 additions and 5 deletions
@@ -1 +1 @@
db.version=6
db.version=7
@@ -0,0 +1,3 @@
create cached table T_RELATION ( REL_ID_C varchar(36) not null, REL_IDDOCFROM_C varchar(36) not null, REL_IDDOCTO_C varchar(36) not null, REL_DELETEDATE_D datetime, primary key (REL_ID_C) );
update T_CONFIG set CFG_VALUE_C = '7' where CFG_ID_C = 'DB_VERSION';