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

Revision 405, 858 bytes checked in by root, 20 years ago (diff)
Line 
1# phpMyAdmin MySQL-Dump
2# version 2.2.2
3# http://phpwizard.net/phpMyAdmin/
4# http://phpmyadmin.sourceforge.net/ (download page)
5#
6# --------------------------------------------------------
7
8#
9# Table structure for table `seccont`
10#
11
12CREATE TABLE seccont (
13  artid int(11) NOT NULL auto_increment,
14  secid int(11) NOT NULL default '0',
15  title text NOT NULL,
16  content text NOT NULL,
17  counter int(11) NOT NULL default '0',
18  PRIMARY KEY  (artid),
19  KEY idxseccontsecid (secid),
20  KEY idxseccontcounterdesc (counter)
21) TYPE=MyISAM;
22# --------------------------------------------------------
23
24#
25# Table structure for table `sections`
26#
27
28CREATE TABLE sections (
29  secid int(11) NOT NULL auto_increment,
30  secname varchar(40) NOT NULL default '',
31  image varchar(50) NOT NULL default '',
32  PRIMARY KEY  (secid),
33  KEY idxsectionssecname (secname)
34) TYPE=MyISAM;
Note: See TracBrowser for help on using the repository browser.