Ferret File System/v0.1/archive: Difference between revisions

From Woozle Writes Code
Jump to navigation Jump to search
(extracted from main FF page)
 
No edit summary
Line 1: Line 1:
This page is for discarded pieces of [[FileFerret]] -- a map of dead-end paths, possibly.
This page is for discarded pieces of [[FileFerret]] -- a map of dead-end paths, possibly.


My original notes are on [[htwiki:FileFerret|HypertWiki]].
===locations===
===locations===
'''I'm going to try eliminating this.''' It's basically just all folders where ID_Parent IS NULL.
'''I'm going to try eliminating this.''' It's basically just all folders where ID_Parent IS NULL.
<mysql>CREATE TABLE `locations` (
<syntaxhighlight lang=mysql>CREATE TABLE `locations` (
   `ID`        INT NOT NULL AUTO_INCREMENT,
   `ID`        INT NOT NULL AUTO_INCREMENT,
   `ID_Folder` INT NOT NULL,
   `ID_Folder` INT NOT NULL,
Line 10: Line 11:
   PRIMARY KEY(`ID`)
   PRIMARY KEY(`ID`)
)
)
ENGINE = MYISAM;</mysql>
ENGINE = MYISAM;</syntaxhighlight>

Revision as of 19:31, 22 July 2018

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;