mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
11 lines
353 B
SQL
11 lines
353 B
SQL
CREATE TABLE `tblCategory` (
|
|
`id` int(11) NOT NULL auto_increment,
|
|
`name` text NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
INSERT INTO tblCategory VALUES (0, '');
|
|
CREATE TABLE `tblDocumentCategory` (
|
|
`categoryID` int(11) NOT NULL default 0,
|
|
`documentID` int(11) NOT NULL default 0
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|