2006/9/11, James Bennett <[EMAIL PROTECTED]>: > > On 9/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > It describes how to use Django ORM to add initial SQL data to freshly > > installed apps without files with RAW SQL > > There's actually a much better way to do this, which won't require any > additional scripts to be run manually: > > 1. Create a file in your app named 'management.py'. > 2. In it, define a function which will do whatever you want. > 3. Import the dispatcher, and connect your function to the > 'post_syncdb' signal when the sender of the signal is the app being > installed. > > This works because, during a syncdb run, Django will check for a > module called 'management' inside each app and import it if it exists, > and after creating an application's DB tables (and executing any > manual initial SQL), the just-installed app fires the 'post_syncdb' > signal. I have an project with four applications. I've put management.py on the application. So I have to modify somethings in the example. The main issue I have found is that
def my_syncdb_func(): just works if you have just one application in your project. If you have two for example the function is going to be called twice. The django/contrib/sites/management.py explains how to do it in that cases. I you write management.py in your application folder, then you must define the imports like from models import MyModel import models as myapp # Necessari per assignar-ho al dispatcher. and dispatcher.connect(setup_data, sender = myapp, signal=signals.post_syncdb) where setup_data is def setup_data(app, created_models, verbosity): # put your code here How to use created_models and verbosity is pretty explained in the sites example. Just my 5 cents! Best regards, -- Antoni Aloy López Binissalem - Mallorca http://www.trespams.com Soci de Bulma - http://www.bulma.cat --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---