# How to Move a Django Model to Another App

DevFeed: [How to Move a Django Model to Another App](<https://devfeed.tech/articles/how-to-move-a-django-model-to-another-app-33918.md>)

Original publisher: [Read original article](<https://hakibenita.com/move-django-model>)

Author: Haki Benita

Published: 2020-05-05T21:00:00Z

Content type: article

Language: en

Sources: [Haki Benita](<https://devfeed.tech/sources/haki-benita.md>)

Topics: [Django](<https://devfeed.tech/topics/django.md>), [migration](<https://devfeed.tech/topics/migration.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>)

Tags: [article](<https://devfeed.tech/tags/article.md>), [articles](<https://devfeed.tech/tags/articles.md>), [cli](<https://devfeed.tech/tags/cli.md>), [commands](<https://devfeed.tech/tags/commands.md>), [concepts](<https://devfeed.tech/tags/concepts.md>), [django](<https://devfeed.tech/tags/django.md>), [how-to](<https://devfeed.tech/tags/how-to.md>), [migration](<https://devfeed.tech/tags/migration.md>), [migrations](<https://devfeed.tech/tags/migrations.md>), [moving](<https://devfeed.tech/tags/moving.md>), [orm](<https://devfeed.tech/tags/orm.md>), [python](<https://devfeed.tech/tags/python.md>)

## AI overview

The article presents three ways to move a Django model from one Django app to another. It covers migration operations, built-in migration CLI commands, reversible migrations, migration plans, and introspection.

## Source excerpt

In my latest article for RealPython I cover some exotic migration operations, many of the built-in migration CLI commands and demonstrate important migrations concepts such as reversible migrations, migration plans and introspection.