Update of /cvsroot/easymod/easymod/install/schemas
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10831
Modified Files:
easymod_mysql.sql
Log Message:
- added a missing comma, this file will probably be deleted for an alternate method. If upgrading, the tables will already be there so we can't create them again.]
Index: easymod_mysql.sql
===================================================================
RCS file: /cvsroot/easymod/easymod/install/schemas/easymod_mysql.sql,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** easymod_mysql.sql 9 Dec 2005 23:22:37 -0000 1.2
--- easymod_mysql.sql 24 Dec 2005 03:35:59 -0000 1.3
***************
*** 4,13 ****
ALTER TABLE `phpbb_sessions` ADD `session_em` TINYINT(1) DEFAULT '0' NOT NULL;
! INSERT INTO `phpbb_config` (`config_name`, `config_value`)
! VALUES ('em_extensions', '');
! INSERT INTO `phpbb_config` (`config_name`, `config_value`)
! VALUES ('em_mod_dir', 'mods/');
! INSERT INTO `phpbb_config` (`config_name`, `config_value`)
! VALUES ('em_url', 'http://area51.phpbb.com');
--- 4,10 ----
ALTER TABLE `phpbb_sessions` ADD `session_em` TINYINT(1) DEFAULT '0' NOT NULL;
! INSERT INTO `phpbb_config` (`config_name`, `config_value`) VALUES ('em_extensions', '');
! INSERT INTO `phpbb_config` (`config_name`, `config_value`) VALUES ('em_mod_dir', 'mods/');
! INSERT INTO `phpbb_config` (`config_name`, `config_value`) VALUES ('em_url', 'http://area51.phpbb.com');
***************
*** 15,19 ****
`mod_id` mediumint(8) NOT NULL auto_increment,
`mod_file` varchar(255) NOT NULL default '',
! `mod_install_time` INT(11) NOT NULL
`mod_name` varchar(255) NOT NULL default '',
`mod_version` varchar(100) NOT NULL default '',
--- 12,16 ----
`mod_id` mediumint(8) NOT NULL auto_increment,
`mod_file` varchar(255) NOT NULL default '',
! `mod_install_time` INT(11) NOT NULL,
`mod_name` varchar(255) NOT NULL default '',
`mod_version` varchar(100) NOT NULL default '',
|