'Is it possible to MOVE items in a database in django without deleting them?
I have a simple model in Django for a Library Manager. Inside there are 3 models. One to record all the books, another to issue the books and the last one to return the issued books. I already have the relationships done, but the problem arose when I wanted to issue a book. If a book is issued it should no longer be in the book records but rather be in the issued records. And when it is being returned it should go through the return class and get added to the book record. My question is "is it possible to move books in my case from on class to another?"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
