Ferret File System/v0.1/SQL/volume: Difference between revisions
< Ferret File System | v0.1 | SQL
Jump to navigation
Jump to search
m (Woozle moved page FileFerret/SQL/vols to FileFerret/SQL/volume without leaving a redirect: singularizing) |
No edit summary |
||
Line 1: | Line 1: | ||
==About== | ==About== | ||
* '''Purpose''': record of all known volumes, fixed and removable | * '''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 | |||
* '''2013-06-30''' added '''[[wikipedia:Universally unique identifier|UUID]]''' and '''Descr''' fields | |||
** Later, we will probably want to record things like capacity and free space... but later. | |||
* '''2016-02-27''' Renamed from "vols" -> "volume". | |||
==SQL== | ==SQL== | ||
<mysql>CREATE TABLE ` | <mysql>CREATE TABLE `volume` ( | ||
`ID` INT NOT NULL AUTO_INCREMENT, | `ID` INT NOT NULL AUTO_INCREMENT, | ||
Label VARCHAR(63), | Label VARCHAR(63), |
Revision as of 22:46, 27 February 2016
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
- 2013-06-30 added UUID and Descr fields
- Later, we will probably want to record things like capacity and free space... but later.
- 2016-02-27 Renamed from "vols" -> "volume".
SQL
<mysql>CREATE TABLE `volume` (
`ID` INT NOT NULL AUTO_INCREMENT, Label VARCHAR(63), UUID CHAR(36), Descr VARCHAR(127), PRIMARY KEY(`ID`)
) ENGINE = MYISAM;</mysql>