From: Leah Einhorn Date: Fri, 26 May 2023 19:25:07 +0000 (-0400) Subject: Update check constraint docs for MySQL support (#9803) X-Git-Tag: rel_2_0_16~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8578c73e8e81d95b4471c77804f0daa9df7282c8;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Update check constraint docs for MySQL support (#9803) This is now supported as of version 8.0.16 https://dev.mysql.com/doc/refman/8.0/en/create-table-check-constraints.html --- diff --git a/doc/build/core/constraints.rst b/doc/build/core/constraints.rst index 1efccdce5a..a147ea359f 100644 --- a/doc/build/core/constraints.rst +++ b/doc/build/core/constraints.rst @@ -357,7 +357,7 @@ constraints generally should only refer to the column to which they are placed, while table level constraints can refer to any columns in the table. Note that some databases do not actively support check constraints such as -MySQL. +older versions of MySQL (prior to 8.0.16). .. sourcecode:: python+sql