Modify DB seeding to insert surveillance JSONs into the jsons table
services/server/cg_server/db_seed/seed.py
cur.execute(
"""
INSERT INTO "jsons" (key, value) VALUES (%s, %s);
""",
["surveillance_group_counts", Json(...)],
)
... same for surveillance_group_regression
Drop and re-seed development database
Modify DB seeding to insert surveillance JSONs into the jsons table services/server/cg_server/db_seed/seed.py cur.execute( """ INSERT INTO "jsons" (key, value) VALUES (%s, %s); """, ["surveillance_group_counts", Json(...)], ) ... same for surveillance_group_regression Drop and re-seed development database