mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-12 10:04:57 +00:00
11 lines
353 B
MySQL
11 lines
353 B
MySQL
![]() |
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;
|