source: temp/test-xoops.ec-cube.net/html/modules/tinyd0/sql/tinycontent3.sql @ 405

Revision 405, 987 bytes checked in by root, 20 years ago (diff)
Line 
1#
2# Table structure for table `tinycontent`
3#
4
5CREATE TABLE tinycontent3 (
6  storyid int(8) NOT NULL auto_increment,
7  blockid int(8) unsigned NOT NULL default '0',
8  title varchar(255) NOT NULL default '',
9  text text default NULL,
10  visible tinyint(1) NOT NULL default '0',
11  homepage tinyint(1) NOT NULL default '0',
12  nohtml tinyint(1) NOT NULL default '0',
13  nosmiley tinyint(1) NOT NULL default '0',
14  nobreaks tinyint(1) NOT NULL default '0',
15  nocomments tinyint(1) NOT NULL default '0',
16  link tinyint(1) NOT NULL default '0',
17  address varchar(255) default NULL,
18  submenu tinyint(1) NOT NULL default '0',
19  last_modified timestamp(14),
20  created datetime NOT NULL default '2001-1-1 00:00:00',
21  html_header text default NULL,
22
23  KEY (title),
24  KEY (blockid),
25  KEY (visible),
26  KEY (homepage),
27  KEY (nohtml),
28  KEY (nosmiley),
29  KEY (nobreaks),
30  KEY (nocomments),
31  KEY (link),
32  KEY (address),
33  KEY (submenu),
34  KEY (last_modified),
35  PRIMARY KEY (storyid)
36) TYPE=MyISAM;
Note: See TracBrowser for help on using the repository browser.