User:Woozle/Snorp/design/snorp story

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< User:Woozle‎ | Snorp‎ | design
Revision as of 16:01, 28 June 2015 by Woozle (talk | contribs) (starting to sketch this out)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • Purpose: each record is the root node for a Story.

SQL

<mysql>

CREATE TABLE `snorp_story` (
  `ID`                INT NOT NULL AUTO_INCREMENT,
  
  PRIMARY KEY(`ID`)
)
ENGINE = MYISAM;

</mysql>