bug #1674914 [structure] changing definition of a TIMESTAMP field

This commit is contained in:
Marc Delisle
2007-03-08 18:14:37 +00:00
parent 1eca371e5a
commit be23ee35d1
2 changed files with 2 additions and 1 deletions

View File

@@ -320,7 +320,7 @@ class PMA_Table {
$query .= ' DEFAULT NULL';
} else {
if (strlen($default)) {
if ($is_timestamp) {
if ($is_timestamp && $default == '0') {
// a TIMESTAMP does not accept DEFAULT '0'
// but DEFAULT 0 works
$query .= ' DEFAULT ' . PMA_sqlAddslashes($default);