WorkFerret/tables/rate

From Woozle Writes Code
< WorkFerret‎ | tables
Revision as of 12:21, 29 January 2010 by Woozle (talk | contribs) (Created page with '==About== * '''History''': ** '''2010-01-29''' Adapted from MS Access version * '''Fields''': ** '''ID_Proj''' designates the outermost project for this rate; rate can also be us…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

About

  • History:
    • 2010-01-29 Adapted from MS Access version
  • Fields:
    • ID_Proj designates the outermost project for this rate; rate can also be used in sub-projects of this project, but not in parent projects

SQL

<mysql>DROP TABLE IF EXISTS `session`; CREATE TABLE `session` (

 `ID`         INT(4)       NOT NULL AUTO_INCREMENT,
 `ID_Proj`    INT(4)   DEFAULT NULL COMMENT "Project in which this rate can be used",
 `Name`       VARCHAR(63)  NOT NULL COMMENT "brief name for rate (for lists)",
 `PerHour`    DECIMAL(9,2) NOT NULL COMMENT "cost per hour",
 `isActive`   BOOL    DEFAULT FALSE COMMENT "TRUE = still in use; FALSE = only use in history",
  PRIMARY KEY(`ID`)

) ENGINE=MyISAM;</mysql>