Fix broken docs link after FK types mismatch error

See: https://web.archive.org/web/20200921164945/https://dev.mysql.com/doc/refman/8.0/en/innodb-foreign-key-constraints.html

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2021-08-14 15:28:55 +02:00
parent bf18dd5087
commit d804e60820
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
2 changed files with 2 additions and 3 deletions

View File

@ -110,8 +110,7 @@ class Utilities
} else { } else {
/** /**
* InnoDB constraints, see * InnoDB constraints, see
* https://dev.mysql.com/doc/refman/5.0/en/ * https://dev.mysql.com/doc/refman/8.0/en/create-table-foreign-keys.html
* innodb-foreign-key-constraints.html
*/ */
$error .= ' - ' . $error_message . $error .= ' - ' . $error_message .
' (<a href="' . ' (<a href="' .

View File

@ -2628,7 +2628,7 @@ class Table
); );
} }
$html_output .= MySQLDocumentation::show( $html_output .= MySQLDocumentation::show(
'InnoDB_foreign_key_constraints' 'create-table-foreign-keys'
) . "\n"; ) . "\n";
} }
} else { } else {