summaryrefslogtreecommitdiffstats
path: root/inc/lib_config.php
diff options
context:
space:
mode:
authorRobin <robin@Amaya.(none)>2010-05-15 22:29:14 +0200
committerRobin <robin@Amaya.(none)>2010-05-15 22:29:14 +0200
commit78e54e1909506cb6606354a4b6e9120f7c4475b7 (patch)
tree1730eb2facd5e785d81ca12ff153c11c972892d9 /inc/lib_config.php
parent35711d7534eedd5b09a4cedb82dcfbb9455582be (diff)
downloadnextcloud-server-78e54e1909506cb6606354a4b6e9120f7c4475b7.tar.gz
nextcloud-server-78e54e1909506cb6606354a4b6e9120f7c4475b7.zip
fixes in log and ocs
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')
);