Ferret File System/v0.1/SQL/volume

From Woozle Writes Code
< Ferret File System‎ | v0.1‎ | SQL
Revision as of 18:46, 21 April 2013 by Woozle (talk | contribs) (Created page with "==About== * '''Purpose''': record of all known volumes, fixed and removable * '''Fields''': ** '''Label''': the volume's label, which may not be unique (but may help with iden...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Purpose: record of all known volumes, fixed and removable
  • Fields:
    • Label: the volume's label, which may not be unique (but may help with identification)
  • History:
    • 2013-04-21 created

SQL

<mysql>CREATE TABLE `vols` (

 `ID`        INT NOT NULL AUTO_INCREMENT,
 Label       VARCHAR(63),
 PRIMARY KEY(`ID`)

) ENGINE = MYISAM;</mysql>