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:
parent
05705a62fe
commit
0c241647ee
|
@ -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>
|
2014-08-13 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
* mobile/operation/events.php: Improved to show event comment.
|
* mobile/operation/events.php: Improved to show event comment.
|
||||||
|
|
|
@ -490,7 +490,7 @@ CREATE TABLE IF NOT EXISTS `talert_template_module_actions` (
|
||||||
CREATE TABLE IF NOT EXISTS `talert_special_days` (
|
CREATE TABLE IF NOT EXISTS `talert_special_days` (
|
||||||
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
`id_group` INT(10) NOT NULL DEFAULT 0,
|
`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',
|
`same_day` enum('monday','tuesday','wednesday','thursday','friday','saturday','sunday') NOT NULL DEFAULT 'sunday',
|
||||||
`description` text,
|
`description` text,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
|
|
Loading…
Reference in New Issue