Re: Migrating (importing) SQL dump for one model

2009-06-01 Thread Bastien
Thanks Kevin, it looks like it's not going to be easy. I think I will create the model by hand since it's not a lot of work and then I will load the data I have in the dump directly with the PostgreSQL tools and not doing it with Django. Bastien On Jun 1, 10:26 am, "K.Berkhout" wrote: > I think

Re: Migrating (importing) SQL dump for one model

2009-06-01 Thread K.Berkhout
I think a database migration tool is what you're looking for. I've no experience with such tools, but you could look on http://code.djangoproject.com/wiki/SchemaEvolution for database migration tools currently available. Kevin On 1 jun, 10:09, Bastien wrote: > Hi, > > I have a running Django pr

Migrating (importing) SQL dump for one model

2009-06-01 Thread Bastien
Hi, I have a running Django project with users, and a profile app for the users to fill in info on their profile. This model is quite simple with only a few fields, I want to replace it. I have a preexisting database dump that contains data about existing users of a different proforject with diff