1
0
mirror of synced 2025-03-22 16:03:49 +03:00

fixing handling of default values

This commit is contained in:
pookey 2007-10-15 20:06:28 +00:00
parent 574ed30f77
commit 071febe96c

View File

@ -221,7 +221,7 @@ END;
$a = array();
if (isset($column['default']) && $column['default']) {
if (isset($column['default'])) {
$a[] = '\'default\' => ' . var_export($column['default'], true);
}
if (isset($column['notnull']) && $column['notnull']) {