@pratik7368patil/anchor-core 0.1.7 → 0.1.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pratik7368patil/anchor-core",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Core local indexing, sanitization, and retrieval engine for Anchor.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/src/db/schema.sql CHANGED
@@ -120,6 +120,9 @@ CREATE TABLE IF NOT EXISTS sync_state (
120
120
  repo TEXT PRIMARY KEY,
121
121
  last_sync_at TEXT,
122
122
  last_indexed_pr INTEGER,
123
+ history_coverage TEXT,
124
+ history_limit INTEGER,
125
+ history_since TEXT,
123
126
  updated_at TEXT NOT NULL
124
127
  );
125
128