Skip to content
Snippets Groups Projects
Commit c505a8e4 authored by Falko Timme's avatar Falko Timme
Browse files

- MySQL table generator: default value of text fields must be NULL, not 'NULL'.

parent 0baacefd
No related branches found
No related tags found
No related merge requests found
...@@ -268,7 +268,7 @@ class tform_tpl_generator { ...@@ -268,7 +268,7 @@ class tform_tpl_generator {
case 'TEXT': case 'TEXT':
$type = 'text'; $type = 'text';
$typevalue = ''; $typevalue = '';
$defaultValue = 'NULL'; $defaultValue = NULL;
break; break;
case 'DATE': case 'DATE':
$type = 'date'; $type = 'date';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment