You cannot 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
325 B
MySQL
9 lines
325 B
MySQL
5 years ago
|
CREATE TABLE /*_*/url_slug (
|
||
|
`id` INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
||
|
`title` VARCHAR(255) NOT NULL UNIQUE,
|
||
|
`slug` VARCHAR(255) NOT NULL,
|
||
|
`url` VARCHAR(255) NOT NULL UNIQUE,
|
||
|
`is_custom` TINYINT NOT NULL DEFAULT 0,
|
||
|
`show_id` TINYINT NOT NULL DEFAULT 0,
|
||
|
`latinize` TEXT
|
||
|
) /*$wgDBTableOptions*/;
|