Added south app.
authorMarek Stępniowski <marek@stepniowski.com>
Wed, 1 Oct 2008 12:50:00 +0000 (14:50 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Wed, 1 Oct 2008 12:50:00 +0000 (14:50 +0200)
commit21f878e8112cf1f9b732a6dbb77e70efa68a01aa
tree6fddd90dd8de31b2f1d744f7743cf396300e7bc1
parent7d801e715b70774ff4f2a238045385e093701a8e
Added south app.
29 files changed:
README
apps/south/__init__.py [new file with mode: 0644]
apps/south/db/__init__.py [new file with mode: 0644]
apps/south/db/generic.py [new file with mode: 0644]
apps/south/db/mysql.py [new file with mode: 0644]
apps/south/db/postgresql_psycopg2.py [new file with mode: 0644]
apps/south/db/sqlite3.py [new file with mode: 0644]
apps/south/docs/CHANGELOG [new file with mode: 0644]
apps/south/docs/CONTRIBUTING [new file with mode: 0644]
apps/south/docs/LICENSE [new file with mode: 0644]
apps/south/docs/README [new file with mode: 0644]
apps/south/install/README [new file with mode: 0644]
apps/south/install/setup.py [new file with mode: 0755]
apps/south/management/__init__.py [new file with mode: 0644]
apps/south/management/commands/__init__.py [new file with mode: 0644]
apps/south/management/commands/migrate.py [new file with mode: 0644]
apps/south/management/commands/startmigration.py [new file with mode: 0644]
apps/south/management/commands/syncdb.py [new file with mode: 0644]
apps/south/migration.py [new file with mode: 0644]
apps/south/models.py [new file with mode: 0644]
apps/south/tests/__init__.py [new file with mode: 0644]
apps/south/tests/db.py [new file with mode: 0644]
apps/south/tests/fakeapp/__init__.py [new file with mode: 0644]
apps/south/tests/fakeapp/migrations/0001_spam.py [new file with mode: 0644]
apps/south/tests/fakeapp/migrations/0002_eggs.py [new file with mode: 0644]
apps/south/tests/fakeapp/migrations/__init__.py [new file with mode: 0644]
apps/south/tests/fakeapp/models.py [new file with mode: 0644]
apps/south/tests/logic.py [new file with mode: 0644]
wolnelektury/settings.py