Merge branch 'QA_5_2'

This commit is contained in:
William Desportes 2024-04-28 14:32:27 +02:00
commit e2872e3e15
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
5 changed files with 16 additions and 3 deletions

View File

@ -89,6 +89,9 @@ phpMyAdmin - ChangeLog
- issue #17920 Fixed moving column with empty default value will replace it with ''
- issue #18006 Fixed moving columns causes the default uuid() value to get quotes around it
- issue #18962 Fixed move columns with ENUM() & DEFAULT causes invalid SQL
- issue #18276 Fix on update CURRENT_TIMESTAMP doesn't show as default in attributes
- issue #18240 Fix inserting value with UNIX_TIMESTAMP() without a parameter
- issue #19125 Fixed CodeMirror tooltip is below modals
5.2.1 (2023-02-07)
- issue #17522 Fix case where the routes cache file is invalid

View File

@ -160,7 +160,7 @@ $textarea-rows: 15;
}
.CodeMirror-lint-tooltip {
z-index: 200;
z-index: 2000;
font-family: inherit;
code {

View File

@ -56,3 +56,13 @@ $textarea-rows: 15 !default;
.CodeMirror-hints {
z-index: 1999;
}
.CodeMirror-lint-tooltip {
z-index: 2000;
font-family: inherit;
code {
font-family: monospace;
font-weight: bold;
}
}

View File

@ -46,7 +46,7 @@ $textarea-rows: 15;
}
.CodeMirror-lint-tooltip {
z-index: 200;
z-index: 2000;
font-family: inherit;
code {

View File

@ -2,7 +2,7 @@
{% set attribute = submit_attribute %}
{# MariaDB has additional parentheses #}
{% elseif column_meta['Extra'] is defined
and ('on update current_timestamp' in column_meta['Extra'] or 'on update current_timestamp()' in column_meta['Extra']|lower) %}
and ('on update current_timestamp' in column_meta['Extra']|lower or 'on update current_timestamp()' in column_meta['Extra']|lower) %}
{% set attribute = 'on update CURRENT_TIMESTAMP' %}
{% elseif extracted_columnspec['attribute'] is defined %}
{% set attribute = extracted_columnspec['attribute'] %}