remram44 / yoppi

An automatic FTP indexer written in Python. Inspired by Yoshi Indexer (written in PHP).
GNU General Public License v3.0
6 stars 2 forks source link
ftp-indexer

Yoppi

Yoppi is an automatic FTP indexer written in Python.

Build Status

Database migrations

We're now using south for the database migrations.

To convert an existing database, please run :

    python manage.py syncb
    python manage.py migrate --all 0001 --fake

The usual migration workflow is :

    python manage.py syncb
    python manage.py migrate

To create a new migration :

    python manage.py schemamigration --auto <app_name>

and don't forget to push the migration.

For more info, see the south doc