2006-12-02 04:36:16 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2009-11-17 13:48:46 +00:00
|
|
|
* e107 website system
|
|
|
|
*
|
2009-11-18 01:06:08 +00:00
|
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
2009-11-17 13:48:46 +00:00
|
|
|
* Released under the terms and conditions of the
|
|
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/links_page/links_page_sql.php,v $
|
2010-02-10 18:18:01 +00:00
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
|
|
|
* $Author$
|
2009-11-17 13:48:46 +00:00
|
|
|
*/
|
|
|
|
|
2012-08-10 11:37:20 +00:00
|
|
|
header("location:../../index.php");
|
2006-12-02 04:36:16 +00:00
|
|
|
exit;
|
|
|
|
?>
|
|
|
|
# Table structure for table `links_page_cat`
|
|
|
|
#
|
|
|
|
CREATE TABLE links_page_cat (
|
|
|
|
link_category_id int(10) unsigned NOT NULL auto_increment,
|
|
|
|
link_category_name varchar(100) NOT NULL default '',
|
|
|
|
link_category_description varchar(250) NOT NULL default '',
|
|
|
|
link_category_icon varchar(100) NOT NULL default '',
|
|
|
|
link_category_order int(10) unsigned NOT NULL default '0',
|
|
|
|
link_category_class varchar(100) NOT NULL default '0',
|
|
|
|
link_category_datestamp int(10) unsigned NOT NULL default '0',
|
|
|
|
PRIMARY KEY (link_category_id)
|
2011-03-11 18:58:39 +00:00
|
|
|
) ENGINE=MyISAM;
|
2006-12-02 04:36:16 +00:00
|
|
|
# --------------------------------------------------------
|
|
|
|
|
|
|
|
# Table structure for table `links_page`
|
|
|
|
#
|
|
|
|
CREATE TABLE links_page (
|
|
|
|
link_id int(10) unsigned NOT NULL auto_increment,
|
|
|
|
link_name varchar(100) NOT NULL default '',
|
|
|
|
link_url varchar(200) NOT NULL default '',
|
|
|
|
link_description text NOT NULL,
|
|
|
|
link_button varchar(100) NOT NULL default '',
|
|
|
|
link_category tinyint(3) unsigned NOT NULL default '0',
|
|
|
|
link_order int(10) unsigned NOT NULL default '0',
|
|
|
|
link_refer int(10) unsigned NOT NULL default '0',
|
|
|
|
link_open tinyint(1) unsigned NOT NULL default '0',
|
2010-01-05 21:05:29 +00:00
|
|
|
link_class smallint(5) NOT NULL default '0',
|
2006-12-02 04:36:16 +00:00
|
|
|
link_datestamp int(10) unsigned NOT NULL default '0',
|
|
|
|
link_author varchar(255) NOT NULL default '',
|
|
|
|
PRIMARY KEY (link_id)
|
2011-03-11 18:58:39 +00:00
|
|
|
) ENGINE=MyISAM;
|
2006-12-02 04:36:16 +00:00
|
|
|
# --------------------------------------------------------
|