Ferret File System/v0.1/archive

From Woozle Writes Code
< Ferret File System‎ | v0.1
Revision as of 13:40, 25 February 2024 by Woozle (talk | contribs) (Woozle moved page FileFerret/archive to Ferret File System/v0.1/archive: obsolete)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This page is for discarded pieces of FileFerret -- a map of dead-end paths, possibly.

My original notes are on HypertWiki.

locations

I'm going to try eliminating this. It's basically just all folders where ID_Parent IS NULL.

CREATE TABLE `locations` (
  `ID`        INT NOT NULL AUTO_INCREMENT,
  `ID_Folder` INT NOT NULL,
  `Name`      VARCHAR(63),
  `Descr`     VARCHAR(255),
  PRIMARY KEY(`ID`)
)
ENGINE = MYISAM;