Skip to content

Commit e846845

Browse files
committed
Fix link to MySQL docs for BOOL.
Signed-off-by: Dave Dunkin <[email protected]>
1 parent 5cb6bf7 commit e846845

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/tutorials/best-practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
lastmod: 2020-02-08
2+
lastmod: 2021-06-07
33
date: 2016-10-16
44
menu:
55
main:
@@ -12,7 +12,7 @@ weight: 10
1212

1313
## Store bool as TINYINT(1)
1414

15-
In MySQL Server, [`BOOL` is an alias for `TINYINT(1)`](https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html).
15+
In MySQL Server, [`BOOL` is an alias for `TINYINT(1)`](https://dev.mysql.com/doc/refman/8.0/en/numeric-type-syntax.html#idm46095360188160).
1616
The MySQL ADO.NET connector understands this convention and will marshal `TINYINT(1)` back
1717
to managed code as the C# `bool` type (`System.Boolean`).
1818

0 commit comments

Comments
 (0)