1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Source: python-django-dmigrations
Section: python
Priority: optional
Maintainer: Chris Lamb <lamby@debian.org>
Build-Depends: debhelper (>= 7), python-support, quilt
Standards-Version: 3.8.0
Vcs-Git: git://git.chris-lamb.co.uk/pkg-python-django-dmigrations.git
Vcs-Browser: http://git.chris-lamb.co.uk/?p=pkg-python-django-dmigrations.git
Homepage: http://code.google.com/p/dmigrations/
Package: python-django-dmigrations
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-django (>= 1.0)
Description: Database migration tool for Django projects
dmigrations offers a simple but flexible way of managing changes to the
database in your Django projects. It is a replacement for Django's
built-in syncdb command.
.
With dmigrations, every change to your database (including the creation
of your initial tables) is bundled up in a migration. Migrations are
Python files that live in a migrations directory and can be applied and
un-applied (reverted) in sequence.
.
dmigrations aims to be compatible with workflows involving distributed
revision control systems.
|