summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-04-29 20:13:57 +0200
committerThomas Lange <code@nerdmind.de>2017-04-29 20:13:57 +0200
commit3b7fd9fa7395cff02ff7d6e03abdca2180826824 (patch)
treeff616e1a4c27459af9346afbe62eef379f47e364
parent36b8960f741d112f0ca60bf1c2779c782a527220 (diff)
downloadwiki-3b7fd9fa7395cff02ff7d6e03abdca2180826824.tar.gz
wiki-3b7fd9fa7395cff02ff7d6e03abdca2180826824.tar.xz
wiki-3b7fd9fa7395cff02ff7d6e03abdca2180826824.zip
Explanation for column "argv" was added (which is present since version 2.0).
-rw-r--r--Database.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/Database.md b/Database.md
index b3bc131..762c67d 100644
--- a/Database.md
+++ b/Database.md
@@ -8,6 +8,7 @@ In this table are all created page objects stored and will be removed if the adm
* Column `slug`: Contains the slug part of the pages absolute URL
* Column `name`: Contains the name of the page
* Column `body`: Contains the body of the page in the markdown format
+* Column `argv`: Contains the optional argument string or is NULL
## Table `post` [`MyISAM`]
In this table are all created post objects stored and will be removed if the admin deletes them.
@@ -20,6 +21,7 @@ The table type is `MyISAM` because the fulltext search doesn't work with `InnoDB
* Column `slug`: Contains the slug part of the posts absolute URL
* Column `name`: Contains the name of the post
* Column `body`: Contains the body of the post in the markdown format
+* Column `argv`: Contains the optional argument string or is NULL
## Table `user` [`InnoDB`]
In this table are all created user objects stored and will be removed if the admin deletes them.
@@ -33,6 +35,7 @@ In this table are all created user objects stored and will be removed if the adm
* Column `fullname`: Contains the full name of the user
* Column `mailaddr`: Contains the contact email address of the user
* Column `body`: Contains the body of the user in the markdown format
+* Column `argv`: Contains the optional argument string or is NULL
## Why database table prefixes are not supported
The blogging application does not support the definition of a prefix for the database tables. This is because one database should only contain the data from one application (and if this is the case, prefixes are unnecessary). If multiple applications are sharing the same database and a security vulnerability is discovered in one of those applications, an attacker may be able to manipulate the data from the second application through the security vulnerability in the first application. \ No newline at end of file