owllex
owllex
One other possible solution here is to make the change for 1.0, but add a new step in the upgrade steps from 0.9.5 to add `DEFAULT_AUTO_FIELD = "django.db.models.AutoField"` to your...
I can't repro anymore either. I suspect it was fixed as a side effect of another change. Feel free to close.
The issue does not occur if you modify `add_row()` to always supply the same number of columns. So in the above test, changing the line to `add_row("Single", "")` has the...
I think the idea of packaging outbound data into a protocol-agnostic container and keeping it in that form for as long as possible is a good one. However, I would...
I don't think "can it be pickled" should be equivalent to "should it be in a sendable", just to be clear. Yes pickle does enforce some restrictions but I think...
I had the same issue. My workaround was to subclass `EvenniaAdminSite` to modify the app_order field, then remove EvenniaAdminSite from installed apps and replace it with my subclass. Making `app_order`...
I think someone did recently make app_order configurable from settings, so this workaround may not be necessary anymore.