Catsy / test_supabase.py
Domince's picture
Allow staff admin password resets
e71ea6b
Raw
History Blame Contribute Delete
213 Bytes
from app.database import get_db
db = get_db()
print("Updating category 2...")
response = db.table('categories').update({'color_code': '#9370DB'}).eq('category_id', 2).execute()
print("Update response:", response)