caveat-cli 0.10.0 → 0.11.0
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.js +119 -4
- package/dist/index.js.map +1 -1
- package/dist/migrations/002_last_hit_at.sql +3 -0
- package/dist/schema.sql +2 -1
- package/package.json +1 -1
package/dist/schema.sql
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
PRAGMA user_version =
|
|
1
|
+
PRAGMA user_version = 2;
|
|
2
2
|
|
|
3
3
|
CREATE TABLE entries (
|
|
4
4
|
rowid INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
@@ -13,6 +13,7 @@ CREATE TABLE entries (
|
|
|
13
13
|
visibility TEXT,
|
|
14
14
|
file_mtime TEXT NOT NULL,
|
|
15
15
|
indexed_at TEXT NOT NULL,
|
|
16
|
+
last_hit_at TEXT,
|
|
16
17
|
UNIQUE (source, id)
|
|
17
18
|
);
|
|
18
19
|
|