From 6c51974174f8a78045216567474c380525f77ce9 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 16 Apr 2011 17:35:32 +0200 Subject: [PATCH] add foldersize table to owncloud.sql --- docs/owncloud.sql | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/owncloud.sql b/docs/owncloud.sql index 3f96a4540e..75812ad3c7 100644 --- a/docs/owncloud.sql +++ b/docs/owncloud.sql @@ -173,3 +173,13 @@ CREATE TABLE IF NOT EXISTS `users` ( -- -- Daten für Tabelle `users` -- + +-- +-- Table structure for table `foldersize` +-- + +CREATE TABLE IF NOT EXISTS `foldersize` ( + `path` varchar(512) NOT NULL, + `size` int(11) NOT NULL, + PRIMARY KEY (`path`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; \ No newline at end of file