@makaio/storage-pg 1.0.0-dev-1781454904823 → 1.0.0-dev-1781884053376

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -347,7 +347,8 @@ const postgresFtsSearchStrategy = {
347
347
  s.summary,
348
348
  s.summary_updated_at::double precision AS summary_updated_at,
349
349
  s.fork_transforms,
350
- s.target_working_directory
350
+ s.target_working_directory,
351
+ s.metadata
351
352
  FROM sessions s
352
353
  ${buildSessionMatchWhere(input)}
353
354
  ORDER BY last_activity_at DESC
@@ -0,0 +1 @@
1
+ ALTER TABLE "sessions" ADD COLUMN "metadata" jsonb;