Re: SyncDb doesn't create tables in database

2013-05-30 Thread Anas
You are right ! It looks that the table has been created the first time and i didn't saw the message. Concerning the nodeid, i thought that it would be generated automatically and incremented for each new created instance , isn't it ? And i noticed also that the graph was created while the

Re: SyncDb doesn't create tables in database

2013-05-30 Thread Anas
You are right ! It looks that the table has been created the first time and i didn't saw the message. Concerning the nodeid, i thought that it would be generated automatically and incremented for each new created instance , isn't it ? Thanks for the reply On Thursday, May 30, 2013 3:35:36

Re: SyncDb doesn't create tables in database

2013-05-30 Thread Tom Evans
On Thu, May 30, 2013 at 1:46 PM, Anas wrote: > I am having Neo4Django in my django based application and trying to use two > databases at the sametime : Neo4j and PostGIS. So i configured settings.py > as suggested in the docs (http://neo4django.readthedocs.org) and models.py > as well. > > When i

SyncDb doesn't create tables in database

2013-05-30 Thread Anas
I am having Neo4Django in my django based application and trying to use two databases at the sametime : Neo4j and PostGIS. So i configured settings.py as suggested in the docs (http://neo4django.readthedocs.org) and models.py as well. When i try to run syncdb , i am getting this message Y

SyncDb doesn't create tables

2013-05-30 Thread Anas
Hello all, I am trying to create a table in my DB using models.py and the ./manage.py syncdb command. But what i notice is that anything is being inserted even though i can run this commad : ./manage.py sqlall testapp (where testapp is my app) and get the sql that permit to create the table.