Ferret File System/v0.1/SQL/map
< Ferret File System | v0.1 | SQL
Jump to navigation
Jump to search
About
- Purpose: tracks methods of accessing folders on remote hosts
SQL
<mysql>CREATE TABLE `maps` (
`ID` INT NOT NULL AUTO_INCREMENT, `ID_Folder` INT NOT NULL COMMENT "folders.ID", `ID_Host` INT NOT NULL COMMENT "hosts.ID", `Name` VARCHAR(63) NOT NULL COMMENT "short name for lists", `Descr` VARCHAR(255) DEFAULT NULL COMMENT "longer description", `FileSpec` VARCHAR(255) NOT NULL COMMENT "must not have terminating slash; will be used as prefix for folder chains", `isPrimary` BOOL DEFAULT FALSE COMMENT "is Host primarily responsible for maintaining (scanning) this Folder?", `isDrive` BOOL DEFAULT FALSE COMMENT "TRUE = can be queried for volume and capacity information; may be removable.", PRIMARY KEY(`ID`)
) ENGINE = MYISAM;</mysql>