1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-10 16:46:50 +02:00

Initial work on Download SEF Urls

This commit is contained in:
Cameron
2013-12-24 02:33:14 -08:00
parent 2e7232aa9a
commit 86be4773f4
7 changed files with 308 additions and 69 deletions

View File

@@ -5,6 +5,7 @@ CREATE TABLE download (
download_id int(10) unsigned NOT NULL auto_increment,
download_name varchar(100) NOT NULL default '',
download_url varchar(255) NOT NULL default '',
download_sef varchar(255) NOT NULL default '',
download_author varchar(100) NOT NULL default '',
download_author_email varchar(200) NOT NULL default '',
download_author_website varchar(200) NOT NULL default '',
@@ -38,6 +39,7 @@ CREATE TABLE download_category (
download_category_parent int(10) unsigned NOT NULL default '0',
download_category_class varchar(255) NOT NULL default '0',
download_category_order int(10) unsigned NOT NULL default '0',
download_category_sef varchar(255) NOT NULL default '',
PRIMARY KEY (download_category_id)
) ENGINE=MyISAM;
# --------------------------------------------------------