├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── conftest.py ├── docs ├── Makefile ├── conf.py ├── contributing.rst ├── index.rst ├── installation.rst ├── make.bat ├── migration_snapshot.jpeg ├── readme.rst └── usage.rst ├── manage.py ├── migration_snapshots ├── __init__.py ├── admin.py ├── apps.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── create_snapshot.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── settings.py ├── tests │ ├── __init__.py │ ├── test_core.py │ ├── test_model.py │ └── test_visualizer.py └── utils.py ├── pytest.ini ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg └── setup.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/README.rst -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/migration_snapshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/docs/migration_snapshot.jpeg -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/manage.py -------------------------------------------------------------------------------- /migration_snapshots/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.5.1" 2 | -------------------------------------------------------------------------------- /migration_snapshots/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/migration_snapshots/admin.py -------------------------------------------------------------------------------- /migration_snapshots/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/migration_snapshots/apps.py -------------------------------------------------------------------------------- /migration_snapshots/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration_snapshots/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration_snapshots/management/commands/create_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/migration_snapshots/management/commands/create_snapshot.py -------------------------------------------------------------------------------- /migration_snapshots/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/migration_snapshots/migrations/0001_initial.py -------------------------------------------------------------------------------- /migration_snapshots/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration_snapshots/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/migration_snapshots/models.py -------------------------------------------------------------------------------- /migration_snapshots/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/migration_snapshots/settings.py -------------------------------------------------------------------------------- /migration_snapshots/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migration_snapshots/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/migration_snapshots/tests/test_core.py -------------------------------------------------------------------------------- /migration_snapshots/tests/test_model.py: -------------------------------------------------------------------------------- 1 | # TODO: test MigrationSnapshot.save() 2 | -------------------------------------------------------------------------------- /migration_snapshots/tests/test_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/migration_snapshots/tests/test_visualizer.py -------------------------------------------------------------------------------- /migration_snapshots/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/migration_snapshots/utils.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lenders-Cooperative/django-migration-snapshots/HEAD/setup.py --------------------------------------------------------------------------------