[Openvas-commits] r11670 - in trunk/openvas-manager: . doc
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Thu Sep 22 20:23:08 CEST 2011
Author: mattm
Date: 2011-09-22 20:23:04 +0200 (Thu, 22 Sep 2011)
New Revision: 11670
Modified:
trunk/openvas-manager/ChangeLog
trunk/openvas-manager/doc/db.png
trunk/openvas-manager/doc/db_postgres.sql
Log:
* doc/db_postgres.sql (task_users): New table.
* doc/db.png: Update from SQL.
Modified: trunk/openvas-manager/ChangeLog
===================================================================
--- trunk/openvas-manager/ChangeLog 2011-09-22 18:06:53 UTC (rev 11669)
+++ trunk/openvas-manager/ChangeLog 2011-09-22 18:23:04 UTC (rev 11670)
@@ -1,3 +1,9 @@
+2011-09-22 Matthew Mundell <matthew.mundell at greenbone.net>
+
+ * doc/db_postgres.sql (task_users): New table.
+
+ * doc/db.png: Update from SQL.
+
2011-09-22 Henri Doreau <henri.doreau at greenbone.net>
* src/schema_formats/XML/OMP.xml (get_info): Rewrapped lines for
Modified: trunk/openvas-manager/doc/db.png
===================================================================
(Binary files differ)
Modified: trunk/openvas-manager/doc/db_postgres.sql
===================================================================
--- trunk/openvas-manager/doc/db_postgres.sql 2011-09-22 18:06:53 UTC (rev 11669)
+++ trunk/openvas-manager/doc/db_postgres.sql 2011-09-22 18:23:04 UTC (rev 11670)
@@ -203,6 +203,12 @@
name text PRIMARY KEY,
value text);
+CREATE TABLE task_users (
+ id integer PRIMARY KEY,
+ task integer REFERENCES tasks (id) ON DELETE RESTRICT,
+ user integer REFERENCES users (id) ON DELETE RESTRICT,
+ actions integer);
+
CREATE TABLE results (
id integer PRIMARY KEY,
uuid text UNIQUE NOT NULL,
More information about the Openvas-commits
mailing list