Changes between Initial Version and Version 1 of Ticket #30035
- Timestamp:
- Dec 12, 2018, 6:30:10 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #30035 – Description
initial v1 4 4 If I am checking the default intermediate table using `apps.get_model` it exists but when I use the same table in migrations it gives me error: 5 5 6 ``` 6 {{{ 7 7 8 File "./manage.py", line 19, in <module> 8 9 execute_from_command_line(sys.argv) … … 29 30 state.models[app_label, self.model_name_lower].fields.append((self.name, field)) 30 31 KeyError: ('app', 'A_b') 31 ``` 32 }}}