diff --git a/supabase/migrations/20260223212325_agregar_nombre_conversacion.sql b/supabase/migrations/20260223212325_agregar_nombre_conversacion.sql new file mode 100644 index 0000000..4fb2325 --- /dev/null +++ b/supabase/migrations/20260223212325_agregar_nombre_conversacion.sql @@ -0,0 +1,5 @@ +alter table "public"."conversaciones_plan" add column "nombre" text default ('Chat '::text || CURRENT_DATE); + +alter table "public"."conversaciones_plan" alter column "conversacion_json" set default '[]'::jsonb; + +