hey everyone,

I successfully cut up my models.py into different files, so now I have:

models/
        + something1.py
        + something2.py
        + something3.py

and in __init__.py
        from something1 import *
        from something2 import *
        from something3 import *

to make things simpler. In all my models I have:

     class Meta:
         app_label = 'myapp'

Now I have one problem: my initial SQL isn't executed anymore.

any ideas?


  - bram

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to