VbzCart/docs/tables/cat pages old

From Woozle Writes Code
< VbzCart‎ | docs‎ | tables
Jump to navigation Jump to search

About

  • Purpose: Redirects obsolete URLs to current URLs

SQL

<section begin=sql /><mysql>DROP TABLE IF EXISTS `cat_pages_old`; CREATE TABLE `cat_pages_old` (

 `Path` varchar(63) NOT NULL COMMENT 'URI of page to redirect from',
 `AB_Page` INT NOT NULL COMMENT "cat_pages.AB of page to redirect to",
 `WhenSet` DATETIME COMMENT "optional timestamp of when this redirect was created",
 `Notes` varchar(255) COMMENT "optional notes on why this redirect is being maintained",
 PRIMARY KEY (`Path`)

);</mysql> <section end=sql />