fix uuid column to char(36)

This commit is contained in:
collerek
2020-11-28 10:48:49 +01:00
parent 0f102d3473
commit 203c57fb2f
6 changed files with 53 additions and 27 deletions

View File

@ -1,3 +1,9 @@
# 0.5.4
* Fixed bug in `UUID` field that was trimmed to 32 chars instead of 36 (with dashes).
* Since first 32 characters of uuid should still be unique I consider this as non-breaking, but if you
were using UUID field before you might consider re-generating the ids.
# 0.5.3
* Fixed bug in `Model.dict()` method that was ignoring exclude parameter and not include dictionary argument.