summaryrefslogtreecommitdiffstats
path: root/inc/lib_config.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/lib_config.php')
-rwxr-xr-xinc/lib_config.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/lib_config.php b/inc/lib_config.php
index a6567bc8293..986d12f4dce 100755
--- a/inc/lib_config.php
+++ b/inc/lib_config.php
@@ -292,10 +292,12 @@ class OC_CONFIG{
);
CREATE TABLE 'log' (
+ `id` INTEGER ASC DEFAULT '' NOT NULL,
'timestamp' int(11) NOT NULL,
'user' varchar(250) NOT NULL,
'type' int(11) NOT NULL,
- 'message' varchar(250) NOT NULL
+ 'message' varchar(250) NOT NULL,
+ PRIMARY KEY ('id')
);