项目作者: remram44

项目描述 :
An automatic FTP indexer written in Python. Inspired by Yoshi Indexer (written in PHP).
高级语言: Python
项目地址: git://github.com/remram44/yoppi.git
创建时间: 2012-03-25T21:40:24Z
项目社区:https://github.com/remram44/yoppi

开源协议:GNU General Public License v3.0

下载


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 :

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

The usual migration workflow is :

  1. python manage.py syncb
  2. python manage.py migrate

To create a new migration :

  1. python manage.py schemamigration --auto <app_name>

and don’t forget to push the migration.

For more info, see the south doc