bug #1674914 [structure] changing definition of a TIMESTAMP field
This commit is contained in:
@@ -5,6 +5,7 @@ phpMyAdmin - ChangeLog
|
|||||||
$Id$
|
$Id$
|
||||||
$HeadURL$
|
$HeadURL$
|
||||||
|
|
||||||
|
- bug #1674914 [structure] changing definition of a TIMESTAMP field
|
||||||
- bug #1615530 [upload] added more specific error message if field upload fails
|
- bug #1615530 [upload] added more specific error message if field upload fails
|
||||||
- [gui] avoid displaying a wide selector in server selection
|
- [gui] avoid displaying a wide selector in server selection
|
||||||
+ [core] added PMA_fatalError() and made use of it
|
+ [core] added PMA_fatalError() and made use of it
|
||||||
|
@@ -320,7 +320,7 @@ class PMA_Table {
|
|||||||
$query .= ' DEFAULT NULL';
|
$query .= ' DEFAULT NULL';
|
||||||
} else {
|
} else {
|
||||||
if (strlen($default)) {
|
if (strlen($default)) {
|
||||||
if ($is_timestamp) {
|
if ($is_timestamp && $default == '0') {
|
||||||
// a TIMESTAMP does not accept DEFAULT '0'
|
// a TIMESTAMP does not accept DEFAULT '0'
|
||||||
// but DEFAULT 0 works
|
// but DEFAULT 0 works
|
||||||
$query .= ' DEFAULT ' . PMA_sqlAddslashes($default);
|
$query .= ' DEFAULT ' . PMA_sqlAddslashes($default);
|
||||||
|
Reference in New Issue
Block a user