Changes between Initial Version and Version 1 of Ticket #33912
- Timestamp:
- Aug 10, 2022, 5:25:45 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33912
- Property Cc added
- Property Component Uncategorized → contrib.admin
- Property Keywords admin multidb added
- Property Type Uncategorized → Bug
-
Ticket #33912 – Description
initial v1 14 14 The underlying issue is clearly that the admin will try to verify in the default DB that the objects doesn't exist. I think that the admin should *not* look in the default DB, as I set it up to only use the 'other' DB for my model... 15 15 16 The issue only occurs in the admin, things are OK when editing the model objects in code: 16 17 17 ``` 18 {{{ 18 19 % poetry run ./manage.py shell 19 20 (...) … … 29 30 >>> o.save() 30 31 >>> 31 ```32 32 33 }}} 34