User:Woozle/StockFerret/places

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< User:Woozle‎ | StockFerret
Revision as of 02:53, 9 March 2013 by Woozle (talk | contribs) (Created page with "==About== * '''Purpose''': all kinds of places * '''Adapted from''': VbzCart/tables/stk places ==SQL== <mysql> CREATE TABLE `places` ( `ID` INT NOT NULL AUTO_INCREMENT,...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

SQL

<mysql> CREATE TABLE `places` (

  `ID` INT NOT NULL AUTO_INCREMENT,
  `ID_Parent`    INT                       COMMENT "self.ID of place in which this place is found; may be NULL",
  `Name`         VARCHAR(63)      NOT NULL COMMENT "brief descriptive name for listings and tree-paths",
  `Descr`        VARCHAR(127) DEFAULT NULL COMMENT "(optional) description of this place, so it can be located",
  PRIMARY KEY(`ID`)
) ENGINE = MYISAM;

</mysql>