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.
 
 
 
 
 
 

9 lines
318 B

CREATE TABLE IF NOT EXISTS `tiki_custom_route` (
`id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
`description` varchar(255) NULL,
`type` varchar(255) NOT NULL,
`from` varchar(255) NOT NULL,
`redirect` text NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT '1',
`user_id` int(11) NOT NULL
) ENGINE=MyISAM;