Metadata-Version: 2.0
Name: django-18-fast-migrations
Version: 0.1.1
Summary: Fast migrations from Django 1.10 backported into Django 1.8
Home-page: https://github.com/shaib/django_18_fast_migrations
Author: Shai Berger
Author-email: shai@platonix.com
License: BSD
Keywords: django_18_fast_migrations
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5

=============================
django_18_fast_migrations
=============================

.. commented-out .. image:: https://badge.fury.io/py/django_18_fast_migrations.svg
    :target: https://badge.fury.io/py/django_18_fast_migrations

.. commented-out .. image:: https://travis-ci.org/shaib/django_18_fast_migrations.svg?branch=master
    :target: https://travis-ci.org/shaib/django_18_fast_migrations

.. commented-out .. image:: https://codecov.io/gh/shaib/django_18_fast_migrations/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/shaib/django_18_fast_migrations

Fast migrations from Django 1.10 backported into Django 1.8

.. commented-out Documentation
   -------------

   The full documentation is at https://django_18_fast_migrations.readthedocs.io.

Usage
-----

Install django_18_fast_migrations::

    pip install django_18_fast_migrations

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'django_18_fast_migrations',
        ...
    )

Done. Your migrations will now run faster.

Features
--------

* Nothing visible, except the time it takes migrations to run.

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox

Or::

    (myenv) $ cd $SOURCE_ROOT
    (myenv) $ python tests/django_runtests.py

Credits
-------

The changes in Django's migrations code which made this happen were mostly
made by Markus Holtermann and Simon Charette, of the Django project. Of
course, the Django project and in particular migrations have enjoyed many
contributors over the years.

Our contribution here is just to package this code for use in Django 1.8.

This work was partly supported by Matific_.

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Matific: https://matific.com/
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.1 (2017-06-01)
++++++++++++++++++

* Fixed a packaging error.
* Allowed package to be used on Django 1.9.x.

0.1.0 (2017-04-06)
++++++++++++++++++

* First release on PyPI.


