5 lines
156 B
SQL
5 lines
156 B
SQL
-- Fix existing lesson_progress rows that might have NULL activity_data
|
|
UPDATE lesson_progress
|
|
SET activity_data = '{}'::jsonb
|
|
WHERE activity_data IS NULL;
|