LICENSE
MANIFEST.in
README.md
setup.cfg
setup.py
django_migration_linter/__init__.py
django_migration_linter/cache.py
django_migration_linter/constants.py
django_migration_linter/migration_linter.py
django_migration_linter/operations.py
django_migration_linter/utils.py
django_migration_linter.egg-info/PKG-INFO
django_migration_linter.egg-info/SOURCES.txt
django_migration_linter.egg-info/dependency_links.txt
django_migration_linter.egg-info/requires.txt
django_migration_linter.egg-info/top_level.txt
django_migration_linter/management/__init__.py
django_migration_linter/management/utils.py
django_migration_linter/management/commands/__init__.py
django_migration_linter/management/commands/lintmigrations.py
django_migration_linter/management/commands/makemigrations.py
django_migration_linter/sql_analyser/__init__.py
django_migration_linter/sql_analyser/analyser.py
django_migration_linter/sql_analyser/base.py
django_migration_linter/sql_analyser/mysql.py
django_migration_linter/sql_analyser/postgresql.py
django_migration_linter/sql_analyser/sqlite.py
django_migration_linter/sql_analyser/utils.py
tests/__init__.py
tests/fixtures.py
tests/functional/__init__.py
tests/functional/test_cache.py
tests/functional/test_data_migrations.py
tests/functional/test_makemigrations_command.py
tests/functional/test_migration_linter.py
tests/test_project/__init__.py
tests/test_project/settings.py
tests/test_project/urls.py
tests/test_project/wsgi.py
tests/test_project/app_add_manytomany_field/__init__.py
tests/test_project/app_add_manytomany_field/apps.py
tests/test_project/app_add_manytomany_field/models.py
tests/test_project/app_add_manytomany_field/migrations/0001_initial.py
tests/test_project/app_add_manytomany_field/migrations/0002_b_many_to_many.py
tests/test_project/app_add_manytomany_field/migrations/__init__.py
tests/test_project/app_add_not_null_column/__init__.py
tests/test_project/app_add_not_null_column/apps.py
tests/test_project/app_add_not_null_column/models.py
tests/test_project/app_add_not_null_column/migrations/0001_create_table.py
tests/test_project/app_add_not_null_column/migrations/0002_add_new_not_null_field.py
tests/test_project/app_add_not_null_column/migrations/__init__.py
tests/test_project/app_add_not_null_column_followed_by_default/__init__.py
tests/test_project/app_add_not_null_column_followed_by_default/apps.py
tests/test_project/app_add_not_null_column_followed_by_default/models.py
tests/test_project/app_add_not_null_column_followed_by_default/migrations/0001_initial.py
tests/test_project/app_add_not_null_column_followed_by_default/migrations/0002_a_not_null_field.py
tests/test_project/app_add_not_null_column_followed_by_default/migrations/__init__.py
tests/test_project/app_alter_column/__init__.py
tests/test_project/app_alter_column/apps.py
tests/test_project/app_alter_column/models.py
tests/test_project/app_alter_column/migrations/0001_initial.py
tests/test_project/app_alter_column/migrations/0002_auto_20190414_1456.py
tests/test_project/app_alter_column/migrations/__init__.py
tests/test_project/app_alter_column_drop_not_null/__init__.py
tests/test_project/app_alter_column_drop_not_null/apps.py
tests/test_project/app_alter_column_drop_not_null/models.py
tests/test_project/app_alter_column_drop_not_null/migrations/0001_create_table.py
tests/test_project/app_alter_column_drop_not_null/migrations/0002_drop_not_null.py
tests/test_project/app_alter_column_drop_not_null/migrations/__init__.py
tests/test_project/app_correct/__init__.py
tests/test_project/app_correct/apps.py
tests/test_project/app_correct/models.py
tests/test_project/app_correct/migrations/0001_initial.py
tests/test_project/app_correct/migrations/0002_foo.py
tests/test_project/app_correct/migrations/__init__.py
tests/test_project/app_create_table_with_not_null_column/__init__.py
tests/test_project/app_create_table_with_not_null_column/apps.py
tests/test_project/app_create_table_with_not_null_column/models.py
tests/test_project/app_create_table_with_not_null_column/migrations/0001_initial.py
tests/test_project/app_create_table_with_not_null_column/migrations/__init__.py
tests/test_project/app_data_migrations/__init__.py
tests/test_project/app_data_migrations/apps.py
tests/test_project/app_data_migrations/models.py
tests/test_project/app_data_migrations/migrations/0001_initial.py
tests/test_project/app_data_migrations/migrations/0002_missing_reverse.py
tests/test_project/app_data_migrations/migrations/0003_incorrect_arguments.py
tests/test_project/app_data_migrations/migrations/__init__.py
tests/test_project/app_drop_column/__init__.py
tests/test_project/app_drop_column/apps.py
tests/test_project/app_drop_column/models.py
tests/test_project/app_drop_column/migrations/0001_initial.py
tests/test_project/app_drop_column/migrations/0002_remove_a_field_b.py
tests/test_project/app_drop_column/migrations/__init__.py
tests/test_project/app_drop_table/__init__.py
tests/test_project/app_drop_table/apps.py
tests/test_project/app_drop_table/models.py
tests/test_project/app_drop_table/migrations/0001_initial.py
tests/test_project/app_drop_table/migrations/0002_delete_a.py
tests/test_project/app_drop_table/migrations/__init__.py
tests/test_project/app_ignore_migration/__init__.py
tests/test_project/app_ignore_migration/apps.py
tests/test_project/app_ignore_migration/models.py
tests/test_project/app_ignore_migration/migrations/0001_initial.py
tests/test_project/app_ignore_migration/migrations/0002_ignore_migration.py
tests/test_project/app_ignore_migration/migrations/__init__.py
tests/test_project/app_make_not_null_with_django_default/__init__.py
tests/test_project/app_make_not_null_with_django_default/apps.py
tests/test_project/app_make_not_null_with_django_default/models.py
tests/test_project/app_make_not_null_with_django_default/migrations/0001_initial.py
tests/test_project/app_make_not_null_with_django_default/migrations/0002_make_not_null_with_django_default.py
tests/test_project/app_make_not_null_with_django_default/migrations/__init__.py
tests/test_project/app_make_not_null_with_lib_default/__init__.py
tests/test_project/app_make_not_null_with_lib_default/apps.py
tests/test_project/app_make_not_null_with_lib_default/models.py
tests/test_project/app_make_not_null_with_lib_default/migrations/0001_initial.py
tests/test_project/app_make_not_null_with_lib_default/migrations/0002_make_not_null_with_lib_default.py
tests/test_project/app_make_not_null_with_lib_default/migrations/__init__.py
tests/test_project/app_rename_column/__init__.py
tests/test_project/app_rename_column/apps.py
tests/test_project/app_rename_column/models.py
tests/test_project/app_rename_column/migrations/0001_initial.py
tests/test_project/app_rename_column/migrations/0002_auto_20190414_1502.py
tests/test_project/app_rename_column/migrations/__init__.py
tests/test_project/app_rename_table/__init__.py
tests/test_project/app_rename_table/apps.py
tests/test_project/app_rename_table/models.py
tests/test_project/app_rename_table/migrations/0001_initial.py
tests/test_project/app_rename_table/migrations/0002_auto_20190414_1500.py
tests/test_project/app_rename_table/migrations/__init__.py
tests/test_project/app_unique_together/__init__.py
tests/test_project/app_unique_together/apps.py
tests/test_project/app_unique_together/models.py
tests/test_project/app_unique_together/migrations/0001_initial.py
tests/test_project/app_unique_together/migrations/0002_auto_20190729_2122.py
tests/test_project/app_unique_together/migrations/0003_auto_20190729_2122.py
tests/test_project/app_unique_together/migrations/__init__.py
tests/test_project/makemigrations_backward_incompatible_migration_missing/__init__.py
tests/test_project/makemigrations_backward_incompatible_migration_missing/apps.py
tests/test_project/makemigrations_backward_incompatible_migration_missing/models.py
tests/test_project/makemigrations_backward_incompatible_migration_missing/migrations/0001_initial.py
tests/test_project/makemigrations_backward_incompatible_migration_missing/migrations/__init__.py
tests/test_project/makemigrations_correct_migration_missing/__init__.py
tests/test_project/makemigrations_correct_migration_missing/apps.py
tests/test_project/makemigrations_correct_migration_missing/models.py
tests/test_project/makemigrations_correct_migration_missing/migrations/0001_initial.py
tests/test_project/makemigrations_correct_migration_missing/migrations/__init__.py
tests/unit/__init__.py
tests/unit/test_linter.py
tests/unit/test_sql_analyser.py
tests/unit/test_utils.py