Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
75 views

django GenericForeignkey does not work with object.create() but work fine with save()

I am trying to migrate my db from postgres to mysql. Below is a model Customdata. user = models.ForeignKey(User, related_name='customdatas') call_uuid = models.CharField(max_length=50, null=True, ...
2
votes
2answers
212 views

In Django/South HOWTO create an instance of a model from a different app during DataMigration

I need to perform a datamigration of a model Answer in app Question. In that script there is a dependency such that I need to create an instance of a model Chapter which is in the app Journal. So, I ...
2
votes
1answer
120 views

Why won't my GenericForeignKey cascade when deleting?

I'm creating a custom commenting system which can attache comments to any model using the contenttypes GenericForeignKey. class Comment(models.Model): body = ...
0
votes
0answers
8 views

Foreign Key. Field has different name than parent table

is it possible to make a field a foreign key if it has a different name than the parent table?
0
votes
0answers
68 views

Conditional dropdown selection for generic foreign key field

I want to "Feature" an object on a monthly basis. This object would be from one of three tables: Studio, Film, or Actor, defined below: class Studio(models.Model): name = ...