You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
411 B

# author: oeversetten
# description: add table tiki_areas to database schema
# purpose: table used by perspective_binder, enlists assignments
# of categories to perspectives, so it have not to collect
# assignments every time a page loads
CREATE TABLE IF NOT EXISTS `tiki_areas` (
`categId` int(11) NOT NULL,
`perspectives` text,
KEY `categId` (`categId`)
) ENGINE=MyISAM;