1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-29 10:38:08 +01:00

Fixes #2805 - Database News-table upgrade issue.

This commit is contained in:
Cameron 2017-10-09 08:40:36 -07:00
parent 85e2a67018
commit 18ea662b35

View File

@ -318,7 +318,7 @@ CREATE TABLE news (
news_summary text NOT NULL,
news_thumbnail text NOT NULL,
news_sticky tinyint(3) unsigned NOT NULL default '0',
news_template varchar(50) NOT NULL default '',
news_template varchar(50),
PRIMARY KEY (news_id),
KEY news_category (news_category),
KEY news_start_end (news_start,news_end),
@ -344,7 +344,7 @@ CREATE TABLE news_category (
category_manager tinyint(3) unsigned NOT NULL default '254',
category_icon varchar(250) NOT NULL default '',
category_order tinyint(3) unsigned NOT NULL default '0',
category_template varchar(50) NOT NULL default '',
category_template varchar(50),
PRIMARY KEY (category_id),
KEY category_order (category_order)
) ENGINE=MyISAM;