set version in tblVersion to 5.0.0

This commit is contained in:
Uwe Steinmann 2015-04-07 06:44:38 +02:00
parent 986613cf6e
commit 5a1f57f806

View File

@ -62,7 +62,7 @@ CREATE TABLE `tblUsers` (
`loginfailures` INTEGER NOT NULL default '0', `loginfailures` INTEGER NOT NULL default '0',
`disabled` INTEGER NOT NULL default '0', `disabled` INTEGER NOT NULL default '0',
`quota` INTEGER, `quota` INTEGER,
`homefolder` INTEGER default '0', `homefolder` INTEGER default '0',
UNIQUE (`login`) UNIQUE (`login`)
); );
@ -619,5 +619,5 @@ CREATE TABLE `tblVersion` (
INSERT INTO tblUsers VALUES (1, 'admin', '21232f297a57a5a743894a0e4a801fc3', 'Administrator', 'address@server.com', '', '', '', 1, 0, '', 0, 0, 0, 0); INSERT INTO tblUsers VALUES (1, 'admin', '21232f297a57a5a743894a0e4a801fc3', 'Administrator', 'address@server.com', '', '', '', 1, 0, '', 0, 0, 0, 0);
INSERT INTO tblUsers VALUES (2, 'guest', NULL, 'Guest User', NULL, '', '', '', 2, 0, '', 0, 0, 0, 0); INSERT INTO tblUsers VALUES (2, 'guest', NULL, 'Guest User', NULL, '', '', '', 2, 0, '', 0, 0, 0, 0);
INSERT INTO tblFolders VALUES (1, 'DMS', 0, '', 'DMS root', strftime('%s','now'), 1, 0, 2, 0); INSERT INTO tblFolders VALUES (1, 'DMS', 0, '', 'DMS root', strftime('%s','now'), 1, 0, 2, 0);
INSERT INTO tblVersion VALUES (DATETIME(), 4, 3, 0); INSERT INTO tblVersion VALUES (DATETIME(), 5, 0, 0);
INSERT INTO tblCategory VALUES (0, ''); INSERT INTO tblCategory VALUES (0, '');