summaryrefslogtreecommitdiff
path: root/databases/py-south/pkg-descr
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-07-29 13:20:20 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-07-29 13:20:20 +0000
commite48e1a9ea04db68257bd754c1cf52a52f8b9efce (patch)
treef462808e3be2535a1752da07400c18150405ea83 /databases/py-south/pkg-descr
parentopentracker is a open and free bittorrent tracker project. (diff)
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/ PR: ports/137234 Submitted by: Stanislav Svirid <count at 211.ru>
Notes
Notes: svn path=/head/; revision=238616
Diffstat (limited to 'databases/py-south/pkg-descr')
-rw-r--r--databases/py-south/pkg-descr15
1 files changed, 15 insertions, 0 deletions
diff --git a/databases/py-south/pkg-descr b/databases/py-south/pkg-descr
new file mode 100644
index 000000000000..ac6484477440
--- /dev/null
+++ b/databases/py-south/pkg-descr
@@ -0,0 +1,15 @@
+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/