Skip to content
Snippets Groups Projects
Commit 0a3eb9b0 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

#215848 by simonc: SMALLTEXT is not a valid MySQL type, TINYTEXT is there instead

parent 7589d344
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -201,8 +201,8 @@ function db_type_map() {
'varchar:normal' => 'VARCHAR',
'char:normal' => 'CHAR',
'text:tiny' => 'SMALLTEXT',
'text:small' => 'SMALLTEXT',
'text:tiny' => 'TINYTEXT',
'text:small' => 'TINYTEXT',
'text:medium' => 'MEDIUMTEXT',
'text:big' => 'LONGTEXT',
'text:normal' => 'TEXT',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment