Qwlouse / Findeco

GNU General Public License v3.0
7 stars 4 forks source link

Migration broken #137

Closed pinae closed 11 years ago

pinae commented 11 years ago

I encountered a problem with the migration: I deleted my database and i used the commands specified in the Readme.md in the order specified there. That means I called: python manage.py syncdb python manage.py migrate findeco python manage.py migrate node_storage The error occurs whith the last command.

Console Output: Running migrations for node_storage:

I don't know how to fix that. This makes the last command: python manage.py initial_data fail becuase no root-node is found.

pinae commented 11 years ago

It's a workaround to migrate microblogging before node_storage.

Maybe this has something to to with sqlite vs. postgres?

As there is a workaround I remove the high priority flag.

Qwlouse commented 11 years ago

The correct order is now the following (as indicated in the readme):

python manage.py syncdb
python manage.py migrate findeco
python manage.py migrate node_storage
python manage.py migrate microblogging
python manage.py initial_data