mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-09-09 11:29:01 +00:00
make it work with latest update script
This commit is contained in:
parent
a3f9b1d672
commit
d30a74485a
|
@ -1,19 +1,14 @@
|
||||||
-- mysql -uyouruser -pyourpassword yourdb < update.sql
|
START TRANSACTION;
|
||||||
-- this script must be executed when updating form a version < 2.0
|
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
CREATE TABLE `tblEvents` (
|
||||||
|
`id` int(11) NOT NULL auto_increment,
|
||||||
--
|
`name` varchar(150) default NULL,
|
||||||
-- Table structure for events (calendar)
|
`comment` text,
|
||||||
--
|
`start` int(12) default NULL,
|
||||||
|
|
||||||
CREATE TABLE `tblEvents` (
|
|
||||||
`id` int(11) NOT NULL auto_increment,
|
|
||||||
`name` varchar(150) default NULL,
|
|
||||||
`comment` text,
|
|
||||||
`start` int(12) default NULL,
|
|
||||||
`stop` int(12) default NULL,
|
`stop` int(12) default NULL,
|
||||||
`date` int(12) default NULL,
|
`date` int(12) default NULL,
|
||||||
`userID` int(11) NOT NULL default '0',
|
`userID` int(11) NOT NULL default '0',
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user