Skip to content

Files

Latest commit

0d7c853 · Dec 17, 2017

History

History
26 lines (18 loc) · 693 Bytes

installation.md

File metadata and controls

26 lines (18 loc) · 693 Bytes

Installation

Install the lib with:

pip install django-better-migrations

(or any other tool you use for dependency management)

Then add django_better_migrations in INSTALLED_APPS in your settings:

INSTALLED_APPS = [
    ...
    "django_better_migrations",
]

It doesn't matter much where the app is added. Since the main job is to override some django default behavior, the lib will not interfer with other apps unless they override the same parts of Django...

After doing this, the library will be enabled with its default configuration. Next step is configuring it to your needs, you'll learn this in the Configuration section.