1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 21:57:51 +02:00

Some basic preparation for new e_url scheme and other changes.

For anyone reading - please remember that 0.8 should not be utilized on a public site prior to official release.
This commit is contained in:
CaMer0n
2011-06-17 01:13:05 +00:00
parent 2475e1f5aa
commit 064c5c7d1e
9 changed files with 157 additions and 95 deletions

View File

@@ -220,6 +220,7 @@ CREATE TABLE links (
link_open tinyint(1) unsigned NOT NULL default '0',
link_class varchar(255) NOT NULL default '0',
link_function varchar(100) NOT NULL default '',
link_sefurl varchar(255) NOT NULL,
PRIMARY KEY (link_id)
) ENGINE=MyISAM;
@@ -338,21 +339,6 @@ CREATE TABLE news_category (
) ENGINE=MyISAM;
# --------------------------------------------------------
#
# Table structure for table `news_rewrite`
#
CREATE TABLE news_rewrite (
news_rewrite_id int(10) unsigned NOT NULL auto_increment,
news_rewrite_source int(10) unsigned NOT NULL,
news_rewrite_string varchar(255) NOT NULL default '',
news_rewrite_type tinyint(1) unsigned NOT NULL default '1',
PRIMARY KEY (news_rewrite_id),
UNIQUE KEY news_rewrite_string (news_rewrite_string),
UNIQUE KEY news_rewrite_source_type (news_rewrite_source,news_rewrite_type)
) ENGINE=MyISAM;
# --------------------------------------------------------
#
# Table structure for table `online`
#