How to move a model between two Django apps
Posted on Mon 12 March 2018 in Programming, Django • Tagged with django, learning • 2 min read
Let's imagine that you have 2 django apps: article
and blog
.
So first one has model Article
as you already guessed.
So we need to move our Article
model from article
app to blog
app.
- Copy your code of
Article
model fromarticle
app toblog
app intomodels.py …
Continue reading