Opened 17 years ago
Closed 17 years ago
#10767 closed (duplicate)
SQL flush statements are generated for through many to many tables set managed = False
| Reported by: | Trevor Caira | Owned by: | nobody |
|---|---|---|---|
| Component: | Database layer (models, ORM) | Version: | 1.0 |
| Severity: | Keywords: | ||
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
SQL flush statements (those output by ./manage.py sqlflush) correctly do not include statements truncating django models marked as managed = False, except for those which are used as the through model for many to many relations (ManyToManyField(through=...)).
I have attached a patch which fixes the issue by excluding through models marked managed = False when creating the list of tables and sequences to flush.
Attachments (1)
Change History (2)
by , 17 years ago
| Attachment: | check-through-model-for-managed.diff added |
|---|
comment:1 by , 17 years ago
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Duplicate of #10647