-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks_page_sql.php
55 lines (54 loc) · 2.14 KB
/
links_page_sql.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/*
+ ----------------------------------------------------------------------------+
| e107 website system
|
| Copyright (C) 2001-2002 Steve Dunstan ([email protected])
| Copyright (C) 2008-2010 e107 Inc (e107.org)
|
|
| Released under the terms and conditions of the
| GNU General Public License (http://gnu.org).
|
| $URL: https://e107.svn.sourceforge.net/svnroot/e107/trunk/e107_0.7/e107_plugins/links_page/links_page_sql.php $
| $Revision: 12938 $
| $Id: links_page_sql.php 12938 2012-08-10 03:57:15Z e107coders $
| $Author: e107coders $
+----------------------------------------------------------------------------+
*/
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',
link_category_sef varchar(100) NOT NULL default '',
PRIMARY KEY (link_category_id)
) ENGINE=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 tinyint(3) unsigned NOT NULL default '0',
link_datestamp int(10) unsigned NOT NULL default '0',
link_author varchar(255) NOT NULL default '',
link_active tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (link_id)
) ENGINE=MyISAM;
# --------------------------------------------------------