setup_db.py is only for bootstrap - upgrade at runtime
Change-Id: I0cce66961736f11b611f20f8d9d848ddb74c434c
diff --git a/db/setup_db.py b/db/setup_db.py
index 2155776..99cfaf4 100755
--- a/db/setup_db.py
+++ b/db/setup_db.py
@@ -52,3 +52,5 @@
cur.execute("INSERT INTO state (last_modified, schema_version) VALUES (%s, %s)" % (datetime.datetime.now(), DATABASE_SCHEMA_VERSION))
cur.execute("COMMIT;")
+# Do not make any more changes here - the database code will cope with upgrades
+# from this V1 database as they're needed.