]> git.mxchange.org Git - friendica.git/blobdiff - doc/database/db_key-value.md
updating Transifex URL
[friendica.git] / doc / database / db_key-value.md
index a346e6827e9ee0d85356aa66f780e303a870d729..2ed3baa48cf2688570331bf39f524206115614dc 100644 (file)
@@ -6,19 +6,18 @@ A key value storage
 Fields
 ------
 
-| Field | Description | Type          | Null | Key | Default | Extra          |
-| ----- | ----------- | ------------- | ---- | --- | ------- | -------------- |
-| id    |             | int unsigned  | NO   | PRI | NULL    | auto_increment |
-| k     |             | varbinary(50) | NO   |     |         |                |
-| v     |             | mediumtext    | YES  |     | NULL    |                |
+| Field      | Description                  | Type          | Null | Key | Default | Extra |
+| ---------- | ---------------------------- | ------------- | ---- | --- | ------- | ----- |
+| k          |                              | varbinary(50) | NO   | PRI | NULL    |       |
+| v          |                              | mediumtext    | YES  |     | NULL    |       |
+| updated_at | timestamp of the last update | int unsigned  | NO   |     | NULL    |       |
 
 Indexes
 ------------
 
-| Name    | Fields    |
-| ------- | --------- |
-| PRIMARY | id        |
-| k       | UNIQUE, k |
+| Name    | Fields |
+| ------- | ------ |
+| PRIMARY | k      |
 
 
 Return to [database documentation](help/database)