- added sql update for version 3.1.0

This commit is contained in:
steinm 2011-03-10 14:53:26 +00:00
parent f5fb338bd5
commit 054ddd39fc

10
UPDATE-v3.1.0/update.sql Normal file
View 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;