Opened 8 years ago
Last modified 4 years ago
#27871 closed Bug
Django keeps making the same migration over and over again — at Initial Version
Reported by: | Kyle Agronick | Owned by: | nobody |
---|---|---|---|
Component: | Migrations | Version: | 1.10 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
This is what the migration looks like:
class Migration(migrations.Migration): dependencies = [ ('jobs', '0003_auto_20170222_1154'), ] operations = [ migrations.AlterField( model_name='joblog', name='job', field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='logs', to='jobs.Job'), ), ]
Note:
See TracTickets
for help on using tickets.
Migrations for the affected app