1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Issue #933 - real SEF URLs added to forum. (work-in-progress)

This commit is contained in:
Cameron
2015-04-25 12:57:00 -07:00
parent 1e12220959
commit 542b30892f
8 changed files with 102 additions and 27 deletions

View File

@@ -16,6 +16,7 @@ CREATE TABLE forum (
`forum_postclass` smallint(5) NOT NULL default '0',
`forum_threadclass` smallint(5) NOT NULL default '0',
`forum_options` text,
`forum_sef` varchar(250) default NULL,
PRIMARY KEY (`forum_id`),
KEY `forum_parent` (`forum_parent`),
KEY `forum_sub` (`forum_sub`)
@@ -36,6 +37,7 @@ CREATE TABLE forum_thread (
`thread_lastuser_anon` varchar(30) default NULL,
`thread_total_replies` int(10) unsigned NOT NULL default '0',
`thread_options` text,
`thread_sef` varchar(250) default NULL,
PRIMARY KEY (`thread_id`),
KEY `thread_forum_id` (`thread_forum_id`),
KEY `thread_sticky` (`thread_sticky`),