fix typo in swad.sql

This commit is contained in:
Florent H. CARRÉ 2015-11-05 23:34:39 +01:00
parent f71cb846b9
commit 9ba59b876c

View File

@ -466,11 +466,11 @@ CREATE TABLE IF NOT EXISTS expanded_folders (
-- Table file_browser_last: stores the last click of every user in each file browser zone
--
CREATE TABLE IF NOT EXISTS file_browser_last (
"UsrCod INT NOT NULL,
"FileBrowser TINYINT NOT NULL,
"Cod INT NOT NULL DEFAULT -1,
"LastClick DATETIME NOT NULL,
"UNIQUE INDEX(UsrCod,FileBrowser,Cod));
UsrCod INT NOT NULL,
FileBrowser TINYINT NOT NULL,
Cod INT NOT NULL DEFAULT -1,
LastClick DATETIME NOT NULL,
UNIQUE INDEX(UsrCod,FileBrowser,Cod));
--
-- Table file_browser_size: stores the sizes of the file zones
--