If only freakboy3742 and those other lazy core devs wouldn't galavant off to conferences instead of slaving over releases.
kezabelle
scandalous of them
xterm
seriously, we pay them so much!
shruubi joined the channel
Unifox joined the channel
gkap joined the channel
trustyhank
anyone know if they're recording the talks at djangocon this year?
vishaldeep has quit
FunkyBob
don't they most years?
they did at Django/Py-ConAU
trustyhank
oh, right on
vishaldeep joined the channel
xterm
pyvideo.org good way to find stuff related to python!
trustyhank
xterm: thanks!
owais joined the channel
prohobo joined the channel
prohobo
hey, is there a way to filter a queryset on model?
kezabelle
pardon?
prohobo
because i have a model which inherits from another model, but it's shown in the same change_list
i want to filter out the inheriting model
FunkyBob
...
MTI? or abstract inheritance?
kezabelle
Find the PKs of the child model, and exclude those from the QuerySet of the parent model, assuming concrete inheritance
prohobo
the class def for the inheriting model is: "class ModelName(BaseModel):"
so i think it's concrete inheritance
FunkyBob
only if BaseModel doesn't have Meta.abstract = True
prohobo
doesn't
bhitov has quit
owais
I'm facing a weird issue in django 1.7. I'm using a custom module to host migrations for the `auth` app. I'm adding 0002 custom migration to add some fields to the auth.Groups table. Here is my 0002 migration for auth app https://gist.github.com/owais/cabc53a79e7b092457cc
When I run `migrate auth 0001`, it also creates the fields that are specified in 0002.
tomchristie joined the channel
esauro joined the channel
FunkyBob
prohobo: so it's multi-table inheritance
ASUchander1 joined the channel
and thus almost certainly not what you think
owais
it does not make 0002 as migrated which if correct but it creates those fields when running 0001. So while running 0002, django always complains that the fields already exist
this is django 1.7. Looks like a bug to me.. or am I missing something?
FunkyBob
owais: are you using the latest 1.7 from git? or rc3 ?