add foldersize table to owncloud.sql

This commit is contained in:
Robin Appelman 2011-04-16 17:35:32 +02:00
parent 318d024cc1
commit 6c51974174
1 changed files with 10 additions and 0 deletions

View File

@ -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;