Changes between Version 1 and Version 2 of Ticket #35424, comment 1
- Timestamp:
- May 3, 2024, 7:18:28 AM (7 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35424, comment 1
v1 v2 1 Thank you for the report, managed to replicate on main 2 Given an existing migrated model 1 Thank you for the report, I'm struggling to understand what's happening in your project. There's a number of migrations in there. 2 I don't think I have replicated the issue your seeing, what error do you see? 3 4 I can find the following possible issue that given an existing migrated model 3 5 {{{#!python 4 6 class Foo(models.Model): … … 18 20 that generates a migration like 19 21 {{{#!python 20 # Generated by Django 5.1 on 2024-05-03 12:0221 22 22 from django.db import migrations 23 23 … … 46 46 }}} 47 47 Which fails with `django.core.exceptions.FieldDoesNotExist: Foo has no field named 'order'` 48 49 But actually I don't think that's what you're talking about here? Can you reduce it down a bit further?