internal/store/migrate/sql/007_wcache_dirty.sql
1-- Add dirty flag to wcache so the fsnotify watcher can mark changed paths.
2-- dirty = 0 (clean), dirty = 1 (watcher detected a change, needs re-hash).
3ALTER TABLE wcache ADD COLUMN dirty INTEGER NOT NULL DEFAULT 0;