How we can create tables for the databases other than default? I have
two databases and the settings are
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'dbtest1',
        'USER': 'root',
        'PASSWORD': 'pass',
        'HOST': '',
        'PORT': '',
    },
    'db2': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'dbtest2',
        'USER': 'root',
        'PASSWORD': 'pass',
        'HOST': '',
        'PORT': '',
    }
}

When I run syncdb command it creates tables for default (dbtest1
database) only. How can I create tables for db2? Is it possible to
create at runtime?
-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to