science-ation/db/db.update.111.sql
james 7e84ab0222 Add cms table, and move the 'index' pagetext to cms
Add .htaccess rules for the cms
Add cms page display code and convert index.php to pull from the cms
If no page title is passed to send_header(), output the fair name in the <title> tag
2008-08-19 21:13:29 +00:00

11 lines
292 B
SQL

CREATE TABLE `cms` (
`id` INT NOT NULL AUTO_INCREMENT ,
`filename` VARCHAR( 128 ) NOT NULL ,
`dt` DATETIME NOT NULL ,
`lang` VARCHAR( 2 ) NOT NULL ,
`title` VARCHAR( 128 ) NOT NULL ,
`text` TEXT NOT NULL ,
`showlogo` BOOL DEFAULT '0' NOT NULL ,
PRIMARY KEY ( `id` )
) TYPE = MYISAM ;