Vladislav Belousov

Results 1 issues of Vladislav Belousov

Before the change, the library generated migration files using `field_type` from **peewee**, for example, `UUIDField` and `IntegerField` have uppercased `field_type` values: ``` class UUIDField(Field): field_type = 'UUID' ... ``` ```...