From 6e9fea341b98e4964f404fe5bc773e6f161999ec Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sat, 9 Jun 2012 15:33:38 +0200 Subject: Changed preferences configvalue to clob. Fixes several bugs e.g. oc-825 and oc-743. --- db_structure.xml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'db_structure.xml') diff --git a/db_structure.xml b/db_structure.xml index d29dcb46f8c..94567b4d539 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -432,10 +432,8 @@ configvalue - text - + clob true - 255 -- cgit v1.2.3 From acb196e17fb6d01a808e8758b5f852447cc03d99 Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Sat, 7 Jul 2012 15:18:50 +0200 Subject: add group_admin table --- db_structure.xml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'db_structure.xml') diff --git a/db_structure.xml b/db_structure.xml index 94567b4d539..f6dedab0a13 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -233,6 +233,32 @@ + + + *dbprefix*group_admin + + + + + gid + text + + true + 64 + + + + uid + text + + true + 64 + + + + +
+ *dbprefix*groups -- cgit v1.2.3 From 2554f674dec321d53f33af85b047da7789a80c29 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Mon, 6 Aug 2012 12:22:47 -0400 Subject: Database scheme for share API --- db_structure.xml | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) (limited to 'db_structure.xml') diff --git a/db_structure.xml b/db_structure.xml index f6dedab0a13..bce71619f27 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -506,6 +506,121 @@
+ + + *dbprefix*share + + + + + id + 1 + integer + 0 + true + 4 + + + + share_type + integer + + true + 1 + + + + share_with + text + + true + 255 + + + + uid_owner + text + + true + 255 + + + + parent + integer + + false + 4 + + + + item_type + text + + true + 64 + + + + item_source + text + + false + 255 + + + + item_target + text + + false + 255 + + + + file_source + integer + + false + 4 + + + + file_target + text + + false + 512 + + + + permissions + integer + + true + 1 + + + + stime + integer + + true + 8 + + + + accepted + integer + 0 + true + 1 + + + + +
+ *dbprefix*users -- cgit v1.2.3 From 595591a460c9956e0908c89dd90bf79e5c86aee2 Mon Sep 17 00:00:00 2001 From: Jakob Sack Date: Fri, 10 Aug 2012 01:30:08 +0200 Subject: Backgroundjobs: Add table to db_structure.xml --- db_structure.xml | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) (limited to 'db_structure.xml') diff --git a/db_structure.xml b/db_structure.xml index f6dedab0a13..5a783d41a9c 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -506,6 +506,58 @@
+ + + *dbprefix*queuedtasks + + + + + id + integer + 0 + true + 1 + true + 4 + + + + app + text + + true + 255 + + + + klass + text + + true + 255 + + + + method + text + + true + 255 + + + + parameters + clob + true + + + + + + +
+ *dbprefix*users -- cgit v1.2.3