Todor Velichkov

Results 5 issues of Todor Velichkov

Is it possible to get `MoneyField` as an `output_field` from a django annotation (expression)? To give you an example, let say we have a very simple `Fee` model. ``` class...

Recently we started using [django-picklefield](https://github.com/gintas/django-picklefield) in order to store a relatively big (1-5 MB) data structure inside one of our models. So when we call `.save()` on our `Model` this...

We updated our `pyrate-limiter` from `3.1.1` to `3.2.0` and we started getting the following error: ``` ERROR Exception inside application: [Errno 24] Too many open files Traceback (most recent call...

When using the undocumented `NOW`like so: ``` from django_add_default_value import AddDefaultValue, NOW # .... class Migration(migrations.Migration): operations = [ # ... AddDefaultValue(model_name="mymodel", name="updated_at", value=NOW) # .... ] ``` Generates the...

I just found out that we have a N+1 queries on one of our purge operations. I've traced the problem and found out its caused by #523 which is trying...