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

More user class field updates

This commit is contained in:
e107steved
2010-01-05 22:36:04 +00:00
parent 4dd5c2c284
commit 3fd602288f
2 changed files with 5 additions and 5 deletions

View File

@@ -9,9 +9,9 @@
* Core SQL * Core SQL
* *
* $Source: /cvs_backup/e107_0.8/e107_admin/sql/core_sql.php,v $ * $Source: /cvs_backup/e107_0.8/e107_admin/sql/core_sql.php,v $
* $Revision: 1.46 $ * $Revision: 1.47 $
* $Date: 2009-12-24 10:00:30 $ * $Date: 2010-01-05 22:36:03 $
* $Author: e107coders $ * $Author: e107steved $
*/ */
header("location:../index.php"); header("location:../index.php");
@@ -147,7 +147,7 @@ CREATE TABLE core_media_cat (
media_cat_nick varchar(255) NOT NULL default '', media_cat_nick varchar(255) NOT NULL default '',
media_cat_title text NOT NULL, media_cat_title text NOT NULL,
media_cat_diz text NOT NULL, media_cat_diz text NOT NULL,
media_cat_class int(3) unsigned default '0', media_cat_class int(5) default '0',
PRIMARY KEY (media_cat_id), PRIMARY KEY (media_cat_id),
UNIQUE KEY media_cat_nick (media_cat_nick) UNIQUE KEY media_cat_nick (media_cat_nick)
) TYPE=MyISAM; ) TYPE=MyISAM;

View File

@@ -15,7 +15,7 @@ CREATE TABLE faqs_info (
faq_info_title text NOT NULL, faq_info_title text NOT NULL,
faq_info_about text NOT NULL, faq_info_about text NOT NULL,
faq_info_parent int(10) unsigned default '0', faq_info_parent int(10) unsigned default '0',
faq_info_class int(3) unsigned default '0', faq_info_class int(5) default '0',
faq_info_order tinyint(3) unsigned NOT NULL default '0', faq_info_order tinyint(3) unsigned NOT NULL default '0',
faq_info_icon varchar(255) NOT NULL, faq_info_icon varchar(255) NOT NULL,
PRIMARY KEY (faq_info_id) PRIMARY KEY (faq_info_id)