Fixed file_id and created date

This commit is contained in:
zone 2001-06-03 22:39:14 +00:00
parent b96e0d7a80
commit 990e5e746c
2 changed files with 4 additions and 4 deletions

View File

@ -15,5 +15,5 @@ CREATE TABLE phpgw_vfs (
PRIMARY KEY (file_id) PRIMARY KEY (file_id)
); );
INSERT INTO phpgw_vfs VALUES (1,0,0,NULL,NULL,NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/',''); INSERT INTO phpgw_vfs VALUES (1,0,0,NULL,'2000-01-01',NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','');
INSERT INTO phpgw_vfs VALUES (1,0,0,NULL,NULL,NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','home'); INSERT INTO phpgw_vfs VALUES (2,0,0,NULL,'2000-01-01',NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','home');

View File

@ -17,7 +17,7 @@ CREATE TABLE phpgw_vfs (
PRIMARY KEY (file_id) PRIMARY KEY (file_id)
); );
INSERT INTO phpgw_vfs VALUES (1,0,0,NULL,NULL,NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/',''); INSERT INTO phpgw_vfs VALUES (1,0,0,NULL,'2000-01-01',NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','');
INSERT INTO phpgw_vfs VALUES (1,0,0,NULL,NULL,NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','home');; INSERT INTO phpgw_vfs VALUES (2,0,0,NULL,'2000-01-01',NULL,NULL,'Directory','Y',NULL,'phpwebhosting','/','home');
COMMIT; COMMIT;