VbzCart/tables/cat titles

From HTYP, the free directory anyone can edit

Jump to: navigation, search

[edit] About

  • Purpose: catalog titles within departments
  • Future: The design of this table will probably change some, as there deprecated fields to be removed (note that the extra complication of using the wiki for data must be balanced against the ease-of-editing and flexibility this allows)

[edit] SQL

 CREATE TABLE `cat_titles` (
  `ID` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
  `Name` VARCHAR(127),
  `CatKey` VARCHAR(63) NOT NULL,
  `ID_Dept` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  `ID_License` INT(11) DEFAULT NULL COMMENT 'ID of agency from which the image was licensed - DEPRECATED; fileferret will track as topic',
  `DateAdded` DATETIME DEFAULT NULL,
  `DateChecked` DATETIME DEFAULT NULL COMMENT 'DEPRECATED',
  `DateUnavail` DATETIME DEFAULT NULL,
  `RstkMin` INT(11) UNSIGNED DEFAULT NULL,
  `Supplier_CatNum` VARCHAR(31),
  `Supplier_CatNum_Alt` VARCHAR(31) COMMENT 'DEPRECATED',
  `Desc` TINYTEXT COMMENT 'descriptive text for display on web - DEPRECATED (use wiki)',
  `Search` VARCHAR(255) COMMENT 'additional keywords for searching, but not displayed',
  `Notes` VARCHAR(255) COMMENT 'internal notes; not displayed or searched - DEPRECATED (use wiki)',
  PRIMARY KEY(`ID`)
 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Personal tools