forget to create field secret when change table tblUsers

This commit is contained in:
Uwe Steinmann 2016-11-16 11:39:13 +01:00
parent c5a67874cf
commit 7db1703477

View File

@ -107,6 +107,7 @@ CREATE TABLE `new_tblUsers` (
`disabled` INTEGER NOT NULL default '0',
`quota` INTEGER,
`homefolder` INTEGER default NULL REFERENCES `tblFolders` (`id`),
`secret` varchar(50) default NULL,
UNIQUE (`login`)
);