mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
e48e1a9ea0
South is: * Intelligent; it knows if you've missed out a migration or two * Database independent, so there's no hassle if you need to move databases. * Easy; it can write migrations for you, and it takes about a minute to convert your app over to use South. * Designed for a pluggable Django world; you can declare dependencies between apps so they all migrate together correctly, and you can still use syncdb for your non-migrated apps without it interfering. * Useful for data too; you can write migrations to transform legacy data. * Better (we think, anyway) than the alternatives. WWW: http://south.aeracode.org/ PR: ports/137234 Submitted by: Stanislav Svirid <count at 211.ru>
16 lines
725 B
Plaintext
16 lines
725 B
Plaintext
This is South, intelligent schema migrations for Django apps.
|
|
|
|
South is:
|
|
|
|
* Intelligent; it knows if you've missed out a migration or two
|
|
* Database independent, so there's no hassle if you need to move databases.
|
|
* Easy; it can write migrations for you, and it takes about a minute to
|
|
convert your app over to use South.
|
|
* Designed for a pluggable Django world; you can declare dependencies
|
|
between apps so they all migrate together correctly, and you can still
|
|
use syncdb for your non-migrated apps without it interfering.
|
|
* Useful for data too; you can write migrations to transform legacy data.
|
|
* Better (we think, anyway) than the alternatives.
|
|
|
|
WWW: http://south.aeracode.org/
|