I am trying to get my local sqlite db up and running on GAE. According to this post, there is no way for me to get my local db up there directly. That's why I would like to do something like this:
- I get the sqlite db up and running on my dev server with this: http://code.google.com/p/gae-sqlite/
- Locally, I translate the db scheme into django model and migrate the db into GAE db.
- I use google's way to get my data up to GAE.
So here comes my question. Is there any project that is able to directly translate sqlite db scheme into django model directly?
If not, I guess I will have to write up a code gen.
Thanks