mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 00:45:34 +00:00
- added sql update for version 3.1.0
This commit is contained in:
parent
f5fb338bd5
commit
054ddd39fc
10
UPDATE-v3.1.0/update.sql
Normal file
10
UPDATE-v3.1.0/update.sql
Normal file
|
@ -0,0 +1,10 @@
|
|||
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;
|
Loading…
Reference in New Issue
Block a user