Unable to update value of one column in the row in Python client
Hi, I am trying to update the value of a preloaded table's column's value for a given row. Python doesn't throw me any error and the Supabase table also doesn't reflect any change, here's the code I'm using:
update = supabase.table("stocks").update({'last_closing_price': '24.56'}).eq('stock_symbol', 'LCAA')
Any thoughts? I initially thought it was a policies issue but I now have public update access on this table and still no change
update = supabase.table("stocks").update({'last_closing_price': '24.56'}).eq('stock_symbol', 'LCAA')
Any thoughts? I initially thought it was a policies issue but I now have public update access on this table and still no change