git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3905 
91ce42f0-d328-0410-95d8-
f526ca767f89
 
       PathId int4 NOT NULL,
       JobId int4 NOT NULL,
       Size int8 DEFAULT 0,
+      Files int4 DEFAULT 0,
       CONSTRAINT brestore_pathvisibility_pkey PRIMARY KEY (JobId, PathId)
     )";
        $self->dbh_do($req);
 
 
 To upgrade from an old installation, you can use :
 ALTER TABLE brestore_pathvisibility ADD Size int8;
+ALTER TABLE brestore_pathvisibility ADD Files int4;
 
 ################ ACCESSING TO BWEB ###############################