Skip to content

Commit

Permalink
Doctrine does not yet handle „double unsigned“ (see doctrine/dbal#1018).
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffparnitzky committed Jun 28, 2017
1 parent 840068f commit a4b63db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/modules/Monitoring/dca/tl_monitoring.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
'default' => '0',
'inputType' => 'text',
'eval' => array('tl_class'=>'w50', 'readonly'=>true, 'rgxp'=>'digit', 'doNotCopy'=>true),
'sql' => "double unsigned NOT NULL default '0'"
'sql' => "double NOT NULL default '0'" // see doctrine/dbal#1018
),
'disable' => array
(
Expand Down
2 changes: 1 addition & 1 deletion system/modules/Monitoring/dca/tl_monitoring_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
'sorting' => true,
'inputType' => 'text',
'eval' => array('tl_class'=>'w50', 'readonly'=>true, 'rgxp'=>'digit'),
'sql' => "double unsigned NOT NULL default '0'"
'sql' => "double NOT NULL default '0'" // see doctrine/dbal#1018
),
'repetitions' => array
(
Expand Down

0 comments on commit a4b63db

Please sign in to comment.