VbzCart/docs/tables/cat pages old: Difference between revisions

From Woozle Writes Code
< VbzCart‎ | docs‎ | tables
Jump to navigation Jump to search
imported>Woozle
(extracted from "tables" page)
 
m (Woozle moved page VbzCart/VbzCart/tables/cat pages old to VbzCart/docs/tables/cat pages old without leaving a redirect: part 3/5)
 
(No difference)

Latest revision as of 01:56, 25 February 2024

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 />