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

Made a start on media-manager and added a deprecated LAN checking function to remain enabled up until release.

This commit is contained in:
CaMer0n
2009-11-07 11:20:34 +00:00
parent 51e4e7d9f2
commit 7fca058ad5
9 changed files with 605 additions and 178 deletions

View File

@@ -9,8 +9,8 @@
* Core SQL
*
* $Source: /cvs_backup/e107_0.8/e107_admin/sql/core_sql.php,v $
* $Revision: 1.33 $
* $Date: 2009-11-06 11:53:20 $
* $Revision: 1.34 $
* $Date: 2009-11-07 11:20:28 $
* $Author: e107coders $
*/
@@ -119,6 +119,26 @@ CREATE TABLE core (
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Table structure for table `core_media` - media manager
#
CREATE TABLE core_media (
media_id int(10) unsigned NOT NULL auto_increment,
media_caption varchar(255) NOT NULL default '',
media_description varchar(255) NOT NULL default '',
media_category int(10) unsigned NOT NULL default '0',
media_datestamp int(10) unsigned NOT NULL default '0',
media_url varchar(255) NOT NULL default '',
media_userclass varchar(255) NOT NULL default '',
media_tags text NOT NULL,
PRIMARY KEY (media_id)
) TYPE=MyISAM;
#
# Table structure for table `dblog` - db/debug/rolling
#