Skip to content

Commit 9cf6833

Browse files
authored
Changed type of helpful and nothelpful fields from unsigned int to int
1 parent 7b0a0cb commit 9cf6833

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Resources/contao/dca/tl_faq.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
);
1010

1111
$GLOBALS['TL_DCA']['tl_faq']['fields']['helpful'] = array(
12-
'sql' => "int(10) unsigned NOT NULL default '0'"
12+
'sql' => "int(10) NOT NULL default '0'"
1313
);
1414

1515
$GLOBALS['TL_DCA']['tl_faq']['fields']['nothelpful'] = array(
16-
'sql' => "int(10) unsigned NOT NULL default '0'"
16+
'sql' => "int(10) NOT NULL default '0'"
1717
);
1818

1919
$GLOBALS['TL_DCA']['tl_faq']['fields']['noComments']['eval'] = array('tl_class'=>'w50 m12');

0 commit comments

Comments
 (0)