django_evolution.consts

Constants used throughout Django Evolution.

Classes

EvolutionsSource()

The source for an app's evolutions.

UpgradeMethod()

Upgrade methods available for an application.

class django_evolution.consts.UpgradeMethod

Bases: object

Upgrade methods available for an application.

EVOLUTIONS = 'evolutions'

The app is upgraded through Django Evolution.

MIGRATIONS = 'migrations'

The app is upgraded through Django Migrations.

class django_evolution.consts.EvolutionsSource

Bases: object

The source for an app’s evolutions.

APP = 'app'

The evolutions are provided by the app.

BUILTIN = 'builtin'

The evolutions are built-in to Django Evolution.

PROJECT = 'project'

The evolutions are provided custom by the project.