When I try to create an Array of UUIDs: ``` some_array = models.ArrayField(models.UUIDField()) ``` I get a `ProgrammingError` trying to set the array: ``` ProgrammingError: column "some_array" is of type uuid[] but expression is of type text[] ```