Skip to content

Commit c946acd

Browse files
devwhodevsclaude
andcommitted
chore: reserve link_skiplist table schema for future use
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 0a5dfc6 commit c946acd

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

src/store.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,16 @@ impl Store {
259259
);",
260260
)?;
261261

262+
// Link skiplist table (reserved for future use)
263+
self.conn.execute_batch(
264+
"CREATE TABLE IF NOT EXISTS link_skiplist (
265+
id INTEGER PRIMARY KEY,
266+
pattern TEXT NOT NULL,
267+
reason TEXT,
268+
created_at TEXT NOT NULL
269+
);"
270+
)?;
271+
262272
Ok(())
263273
}
264274

0 commit comments

Comments
 (0)