2014-08-13 Junichi Satoh <junichi@rworks.jp>

* pandoradb.sql: Fixed sql error with MySQL 5.6 when NO_ZERO_DATE
	SQL mode is enabled.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@10412 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2014-08-13 05:02:30 +00:00
parent 05705a62fe
commit 0c241647ee
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-08-13 Junichi Satoh <junichi@rworks.jp>
* pandoradb.sql: Fixed sql error with MySQL 5.6 when NO_ZERO_DATE
SQL mode is enabled.
2014-08-13 Junichi Satoh <junichi@rworks.jp>
* mobile/operation/events.php: Improved to show event comment.

View File

@ -490,7 +490,7 @@ CREATE TABLE IF NOT EXISTS `talert_template_module_actions` (
CREATE TABLE IF NOT EXISTS `talert_special_days` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`id_group` INT(10) NOT NULL DEFAULT 0,
`date` date NOT NULL DEFAULT '0000-00-00',
`date` date NOT NULL DEFAULT '1970-01-01',
`same_day` enum('monday','tuesday','wednesday','thursday','friday','saturday','sunday') NOT NULL DEFAULT 'sunday',
`description` text,
PRIMARY KEY (`id`)