Skip to content

Commit

Permalink
Choice int(10) unsigned ergänzt, Vorbereitung für Foreign keys (#1414)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaddade authored Apr 24, 2023
1 parent e7f845c commit 3ce797d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/yform/value/choice.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function getDefinitions(): array
'choice_label' => ['type' => 'text', 'label' => rex_i18n::msg('yform_values_choice_choice_label'), 'notice' => rex_i18n::msg('yform_values_choice_choice_label_notice')],
],
'description' => rex_i18n::msg('yform_values_choice_description'),
'db_type' => ['text', 'int', 'tinyint(1)', 'varchar(191)'],
'db_type' => ['text', 'int', 'int(10) unsigned', 'tinyint(1)', 'varchar(191)'],
'famous' => true,
];
}
Expand Down

0 comments on commit 3ce797d

Please sign in to comment.