Is there a step that I missed, perhaps a "syncdb" step for Google Cloud SQL? I read both of these: Using Google Cloud SQL
My application has access to Google Cloud SQL but I think I just have to create the tables in Google Cloud SQL. What's the command to do that? Maybe that will fix it. Running python manage.py syncdb
updates SQL on localhost but I'd like to update the database on Google Cloud SQl.
EDIT: Below are the Google Cloud SQL settings and the settings.py for my project.
There are three type of connections: 1) your dev machine to your local mysql instance (Easy!) 2) your app engine instance (in Google Cloud) to Google Cloud SQL instance (the same way described in the document) 3) your dev machine to cloudsql instance (Hard): the encouraged way is to obtain an static IP (for a while that doesn't cost you much money), and use the IP to connect cloudsql instance.
Django code [3] should allow you switch between above cases. The command [1] allows you to syncdb to cloudsql instance. If you want your django model to manipulate data in cloudsql instance, you can add config [2] to app.yaml
[1]
[2]
[3]