User:Woozle/TaskFerret

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< User:Woozle
Revision as of 22:19, 4 April 2009 by Woozle (talk | contribs) (saving work)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Tables

tasks

<mysql>DROP TABLE IF EXISTS `task`;

CREATE TABLE `task` (
  `ID`       INT          NOT NULL      AUTO_INCREMENT,
  `Name`     VARCHAR(63)  NOT NULL      COMMENT "brief name for lists",
  `Descr`    VARCHAR(255) DEFAULT NULL  COMMENT "longer description; may contain wiki links",
  `ID_User`  INT          NOT NULL      COMMENT "ID of wiki user to whom task is assigned",
  `WhenMade` DATETIME     NOT NULL      COMMENT "when this task was created",
  `WhenDone` DATETIME     NOT NULL      COMMENT "when task was completed or abandoned",
  PRIMARY KEY(`ID`)
)
ENGINE = MYISAM;</mysql>