My current project is getting extended with geographical stuff, so I'm trying to integrate GeoDjango and import some shapefiles for starters. My setup consists of the following:

  1. MySQL 5.0 as 'default' database, previously the only database.
  2. Spatialite as 'gis' database, should only be used to import areas from shapefiles
  3. South is being used throughout the project

Now I've created a GeoDjango model in a new app for my areas. As usual, I've done ./manage.py schemamigration --initial and when I tried doing ./manage.py migrate $my_new_app --database="gis", it failed with django.db.utils.DatabaseError: no such table: south_migrationhistory, which is I guess correct, since south_migrationhistory is in my main database.

Does anyone have any experience with such setups and can help me out?

EDIT: I've changed the title, since I realized this question is not actually GeoDjango-specific.

link|improve this question

41% accept rate
feedback

4 Answers

In my db_router.py file I just uncomment the 'south' app in my apps list. I launch a syncdb to create the table south_migrationhistory in the otherdb database.

./manage.py syncdb --database="otherdb"

And next comment again the 'south' app in my apps list.

You can now use a standard

./manage.py migrate my_app --database="otherdb"

Here is my db_router.py

#-*- coding: UTF-8 -*-

apps =['app1',
     'app2',
     'south', # <<<---------------- Comment / Uncomment here
   ]

db_name = 'otherdb'

class sh_router(object):
"""A router to control all database operations on models from applications in apps"""

  def db_for_read(self, model, **hints):
    """Point all operations on apps models to db_name"""
    if model._meta.app_label in apps :
        return db_name
    return None

  def db_for_write(self, model, **hints):
    """Point all operations on apps models to db_name"""
    if model._meta.app_label in apps:
        return db_name
    return None

  def allow_relation(self, obj1, obj2, **hints):
    """Allow any relation if a model in apps is involved"""
    if obj1._meta.app_label in apps or obj2._meta.app_label in apps:
        return True
    return None

  def allow_syncdb(self, db, model):
    """Make sure the apps only appears on the db_name db"""
    if db == db_name:
        return model._meta.app_label in apps
    elif model._meta.app_label in apps:
        return False
    return None
link|improve this answer
This is nearly the identical solution I came up with. The only thing I was missing was commenting/uncommenting the south. Thanks. – Cerin Dec 9 '11 at 20:07
Note, this is still an incomplete solution, since you can't run ./manage.py migrate to migrate both databases. The migrates for one database will be picked up by South when migrating the other database. – Cerin Dec 9 '11 at 20:24
feedback

As Tomasz said, you have to syncdb your "gis" db too in order to create all the required tables, including south_migrationhistory.

./manage.py syncdb --database=gis
link|improve this answer
You need to specify a router, or otherwise you'll add all your apps to the other database, which is probably not what you want. – Cerin Dec 9 '11 at 19:49
feedback

My improved soultion:

To create the table south_migrationhistory in the other database:

./manage.py syncdb --database="my_db_name_for_apps"

You can now use a standard :

./manage.py migrate my_app

Here is my actual db_router.py

# -*- coding: UTF-8 -*-
apps =['app1', 'app2' ]    
db_name = 'my_db_name_for_apps'

class sh_router(object):
    """A router to control all database operations on models from applications in apps"""

    def db_for_read(self, model, **hints):
        """Point all operations on apps models to db_name"""
        if model._meta.app_label in apps :
            return db_name
        return None

    def db_for_write(self, model, **hints):
        """Point all operations on apps models to db_name"""
        if model._meta.app_label in apps:
            return db_name
        return None

    def allow_relation(self, obj1, obj2, **hints):
        """Allow any relation if a model in apps is involved"""
        if obj1._meta.app_label in apps or obj2._meta.app_label in apps:
            return True
        return None

    def allow_syncdb(self, db, model):
        """Make sure the apps only appears on the db_name db"""
        if model._meta.app_label in ['south']:
            return True
        if db == db_name:
            return model._meta.app_label in apps
        elif model._meta.app_label in apps:
            return False
        return None
link|improve this answer
feedback

You probably want to have south_migrationhistory in both databases, so syncdb to "gist" for south app. Then your migration should go just fine.

link|improve this answer
Any ideas how to get South to put it in both databases? – rassie Aug 15 '11 at 12:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.