From 9557aa7ac66f1b1492fd7ee8ad26c7a22731543b Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 19 Nov 2015 20:50:26 +0100 Subject: [PATCH] DB scheme for Comments table, resolves #20265 --- db_structure.xml | 151 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 151 insertions(+) diff --git a/db_structure.xml b/db_structure.xml index 8135746233ec..d4e566d1d544 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -1204,5 +1204,156 @@ + + + *dbprefix*comments + + + + + id + integer + 0 + true + true + 4 + 1 + + + + parent_id + integer + 0 + true + true + 4 + + + + topmost_parent_id + integer + 0 + true + true + 4 + + + + children_count + integer + 0 + true + true + 4 + + + + actor_type + text + + true + 64 + + + + actor_id + text + + true + 64 + + + + message + clob + + false + + + + verb + text + + false + 64 + + + + creation_timestamp + timestamp + + false + + + + latest_child_timestamp + timestamp + + false + + + + object_type + text + + true + 64 + + + + object_id + text + + true + 64 + + + + + +
+