Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorThibaut GRIDEL <tgridel@free.fr>2010-05-01 14:02:03 +0400
committerThibaut GRIDEL <tgridel@free.fr>2010-05-01 14:02:03 +0400
commit60d2f8de4e9dbe9273305ce50c0424d66012141c (patch)
treea9731e9460a9598720d871ebcaf915b58fab5ea3 /docs
parent45af5d78b54bfde9f391f8d73fd8ee589960f9a4 (diff)
webdav: fix icewind's new Filesystem.php version
Diffstat (limited to 'docs')
-rwxr-xr-xdocs/owncloud.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/owncloud.sql b/docs/owncloud.sql
index 5ef008b62f4..1f2b0a1b552 100755
--- a/docs/owncloud.sql
+++ b/docs/owncloud.sql
@@ -1,6 +1,8 @@
CREATE TABLE 'locks' (
'token' VARCHAR(255) NOT NULL DEFAULT '',
'path' varchar(200) NOT NULL DEFAULT '',
+ 'created' int(11) NOT NULL DEFAULT '0',
+ 'modified' int(11) NOT NULL DEFAULT '0',
'expires' int(11) NOT NULL DEFAULT '0',
'owner' varchar(200) DEFAULT NULL,
'recursive' int(11) DEFAULT '0',