├── .bumpversion.cfg ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── migrate_sql ├── __init__.py ├── autodetector.py ├── config.py ├── graph.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── makemigrations.py └── operations.py ├── requirements-testing.txt ├── requirements.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── manage.py ├── test_app │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── migrations_change │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20151224_1827.py │ │ └── __init__.py │ ├── migrations_deps_delete │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160106_0947.py │ │ ├── 0003_auto_20160108_0048.py │ │ ├── 0004_auto_20160108_0048.py │ │ └── __init__.py │ ├── migrations_deps_update │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160106_0947.py │ │ └── __init__.py │ ├── migrations_recreate │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20151224_1827.py │ │ ├── 0003_auto_20160106_1038.py │ │ └── __init__.py │ ├── models.py │ ├── sql_config.py │ ├── test_migrations.py │ ├── test_utils.py │ └── urls.py ├── test_app2 │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── migrations_deps_delete │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20160108_0041.py │ │ └── __init__.py │ ├── migrations_deps_update │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── sql_config.py │ └── urls.py └── test_project │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/README.rst -------------------------------------------------------------------------------- /migrate_sql/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.4.0' 2 | -------------------------------------------------------------------------------- /migrate_sql/autodetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/migrate_sql/autodetector.py -------------------------------------------------------------------------------- /migrate_sql/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/migrate_sql/config.py -------------------------------------------------------------------------------- /migrate_sql/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/migrate_sql/graph.py -------------------------------------------------------------------------------- /migrate_sql/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrate_sql/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrate_sql/management/commands/makemigrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/migrate_sql/management/commands/makemigrations.py -------------------------------------------------------------------------------- /migrate_sql/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/migrate_sql/operations.py -------------------------------------------------------------------------------- /requirements-testing.txt: -------------------------------------------------------------------------------- 1 | psycopg2>=2.6.1 2 | coverage==4.0.3 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=1.8 2 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/test_app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/__init__.py -------------------------------------------------------------------------------- /tests/test_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/apps.py -------------------------------------------------------------------------------- /tests/test_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/test_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/migrations_change/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_change/0001_initial.py -------------------------------------------------------------------------------- /tests/test_app/migrations_change/0002_auto_20151224_1827.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_change/0002_auto_20151224_1827.py -------------------------------------------------------------------------------- /tests/test_app/migrations_change/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/migrations_deps_delete/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_deps_delete/0001_initial.py -------------------------------------------------------------------------------- /tests/test_app/migrations_deps_delete/0002_auto_20160106_0947.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_deps_delete/0002_auto_20160106_0947.py -------------------------------------------------------------------------------- /tests/test_app/migrations_deps_delete/0003_auto_20160108_0048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_deps_delete/0003_auto_20160108_0048.py -------------------------------------------------------------------------------- /tests/test_app/migrations_deps_delete/0004_auto_20160108_0048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_deps_delete/0004_auto_20160108_0048.py -------------------------------------------------------------------------------- /tests/test_app/migrations_deps_delete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/migrations_deps_update/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_deps_update/0001_initial.py -------------------------------------------------------------------------------- /tests/test_app/migrations_deps_update/0002_auto_20160106_0947.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_deps_update/0002_auto_20160106_0947.py -------------------------------------------------------------------------------- /tests/test_app/migrations_deps_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/migrations_recreate/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_recreate/0001_initial.py -------------------------------------------------------------------------------- /tests/test_app/migrations_recreate/0002_auto_20151224_1827.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_recreate/0002_auto_20151224_1827.py -------------------------------------------------------------------------------- /tests/test_app/migrations_recreate/0003_auto_20160106_1038.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/migrations_recreate/0003_auto_20160106_1038.py -------------------------------------------------------------------------------- /tests/test_app/migrations_recreate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/models.py -------------------------------------------------------------------------------- /tests/test_app/sql_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/sql_config.py -------------------------------------------------------------------------------- /tests/test_app/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/test_migrations.py -------------------------------------------------------------------------------- /tests/test_app/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/test_utils.py -------------------------------------------------------------------------------- /tests/test_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app/urls.py -------------------------------------------------------------------------------- /tests/test_app2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app2/__init__.py -------------------------------------------------------------------------------- /tests/test_app2/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app2/apps.py -------------------------------------------------------------------------------- /tests/test_app2/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app2/migrations_deps_delete/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app2/migrations_deps_delete/0001_initial.py -------------------------------------------------------------------------------- /tests/test_app2/migrations_deps_delete/0002_auto_20160108_0041.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app2/migrations_deps_delete/0002_auto_20160108_0041.py -------------------------------------------------------------------------------- /tests/test_app2/migrations_deps_delete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app2/migrations_deps_update/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app2/migrations_deps_update/0001_initial.py -------------------------------------------------------------------------------- /tests/test_app2/migrations_deps_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app2/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app2/sql_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app2/sql_config.py -------------------------------------------------------------------------------- /tests/test_app2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_app2/urls.py -------------------------------------------------------------------------------- /tests/test_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_project/__init__.py -------------------------------------------------------------------------------- /tests/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_project/settings.py -------------------------------------------------------------------------------- /tests/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_project/urls.py -------------------------------------------------------------------------------- /tests/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tests/test_project/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/festicket/django-migrate-sql/HEAD/tox.ini --------------------------------------------------------------------------------