1
0
mirror of https://github.com/e107inc/e107.git synced 2025-02-16 04:24:42 +01:00
php-e107/e107_plugins/links_page/links_page_sql.php

54 lines
1.9 KiB
PHP
Raw Normal View History

2006-12-02 04:36:16 +00:00
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| <EFBFBD>Steve Dunstan 2001-2002
| http://e107.org
| jalist@e107.org
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/links_page/links_page_sql.php,v $
| $Revision: 1.2 $
| $Date: 2009-09-19 19:05:16 $
| $Author: e107steved $
2006-12-02 04:36:16 +00:00
+----------------------------------------------------------------------------+
*/
header("location:../index.php");
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)
) TYPE=MyISAM;
# --------------------------------------------------------
# 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',
link_class smallint(5) unsigned 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)
) TYPE=MyISAM;
# --------------------------------------------------------