Hi have you added your app in django settings

Eg. settings.py in project root

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'django.contrib.admin',
    'django.contrib.admindocs',
    'your.app',
)

and your project app structure should be

app
    __init__.py
    models.py
    a.py
    b.py

Pls visit http://www.f2finterview.com/web/Django/

On Sat, Sep 8, 2012 at 9:53 AM, Kollin <kollin...@gmail.com> wrote:

> I create a project. I create app by name "app" in the project. The app
> that :
> app
>     __init__.py
>     models
>         __init__.py
>         a.py
>         b.py
> but I can't syncdb the app. I use django 1.4.
> What error?
> THX
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/django-users/-/o6fxby4Smw8J.
> To post to this group, send email to django-users@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.
>



-- 
Thanks & Regards
Stephen S



Website: www.f2finterview.com
Blog:      blog.f2finterview.com
Tutorial:  tutorial.f2finterview.com
Group:    www.charvigroups.com

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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