PythonのMigrationツールSouthのチュートリアルをやったときのメモ書きです http://ae35.bitbucket.org/south-doc-ja/tutorial/index.html 最初のマイグレーション マイグレーションファイル作成 python manage.py schemamigration southtut --initialマイグレーション実行 python manage.py migrate southtut このようなエラーになる場合はsyncdbを忘れている django.db.utils.DatabaseError: no such table: south_migrationhistory最初はsyncdbをしてsouth_migrationhistoryテーブルを作成しておく必要がある モデルの変更があった場合 ./manage.py s