Fixed problems in DB Status, in information of sql statements. GitHub: #57
This commit is contained in:
parent
0367f88f56
commit
07234fa087
|
@ -277,7 +277,7 @@ function extension_db_check_tables_differences($connection_test,
|
||||||
ui_print_info_message(
|
ui_print_info_message(
|
||||||
__('You can execute this SQL query for to fix.') . "<br />" .
|
__('You can execute this SQL query for to fix.') . "<br />" .
|
||||||
'<pre>' .
|
'<pre>' .
|
||||||
"ALTER TABLE " . $table . " MODIFY COLUMN " . $field . " " . $value . ";" .
|
"ALTER TABLE " . $table . " MODIFY COLUMN " . $name_field . " " . $value . ";" .
|
||||||
'</pre>'
|
'</pre>'
|
||||||
);
|
);
|
||||||
break;
|
break;
|
||||||
|
@ -289,7 +289,7 @@ function extension_db_check_tables_differences($connection_test,
|
||||||
ui_print_info_message(
|
ui_print_info_message(
|
||||||
__('You can execute this SQL query for to fix.') . "<br />" .
|
__('You can execute this SQL query for to fix.') . "<br />" .
|
||||||
'<pre>' .
|
'<pre>' .
|
||||||
"ALTER TABLE " . $table . " MODIFY COLUMN " . $field . "INT NULL;" .
|
"ALTER TABLE " . $table . " MODIFY COLUMN " . $name_field . "INT NULL;" .
|
||||||
'</pre>'
|
'</pre>'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -297,7 +297,7 @@ function extension_db_check_tables_differences($connection_test,
|
||||||
ui_print_info_message(
|
ui_print_info_message(
|
||||||
__('You can execute this SQL query for to fix.') . "<br />" .
|
__('You can execute this SQL query for to fix.') . "<br />" .
|
||||||
'<pre>' .
|
'<pre>' .
|
||||||
"ALTER TABLE " . $table . " MODIFY COLUMN " . $field . "INT NOT NULL;" .
|
"ALTER TABLE " . $table . " MODIFY COLUMN " . $name_field . "INT NOT NULL;" .
|
||||||
'</pre>'
|
'</pre>'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue