├── .gitignore ├── CHANGELOG.txt ├── LICENSE.txt ├── README.md ├── pyproject.toml ├── src ├── __init__.py └── drifter │ ├── __init__.py │ ├── apps.py │ └── management │ ├── __init__.py │ └── commands │ ├── __init__.py │ ├── redo_migration.py │ ├── reset_database.py │ └── revert_migration.py └── tests ├── __init__.py ├── conftest.py ├── project ├── __init__.py ├── polls │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_choice.py │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ └── views.py ├── settings.py ├── urls.py └── wsgi.py ├── test_redo_migration.py ├── test_reset_database.py └── test_revert_migration.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.1" 2 | -------------------------------------------------------------------------------- /src/drifter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/drifter/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/src/drifter/apps.py -------------------------------------------------------------------------------- /src/drifter/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/drifter/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/drifter/management/commands/redo_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/src/drifter/management/commands/redo_migration.py -------------------------------------------------------------------------------- /src/drifter/management/commands/reset_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/src/drifter/management/commands/reset_database.py -------------------------------------------------------------------------------- /src/drifter/management/commands/revert_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/src/drifter/management/commands/revert_migration.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/project/polls/admin.py -------------------------------------------------------------------------------- /tests/project/polls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/project/polls/apps.py -------------------------------------------------------------------------------- /tests/project/polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/project/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/project/polls/migrations/0002_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/project/polls/migrations/0002_choice.py -------------------------------------------------------------------------------- /tests/project/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/project/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/project/polls/models.py -------------------------------------------------------------------------------- /tests/project/polls/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/project/polls/tests.py -------------------------------------------------------------------------------- /tests/project/polls/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /tests/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/project/settings.py -------------------------------------------------------------------------------- /tests/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/project/urls.py -------------------------------------------------------------------------------- /tests/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/project/wsgi.py -------------------------------------------------------------------------------- /tests/test_redo_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/test_redo_migration.py -------------------------------------------------------------------------------- /tests/test_reset_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/test_reset_database.py -------------------------------------------------------------------------------- /tests/test_revert_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethlove/django-drifter/HEAD/tests/test_revert_migration.py --------------------------------------------------------------------------------