- Backfill `created` frontmatter on 266 active notes (git date or mtime) - Normalize `status` to 4 values: draft/active/done/archived (11 notes) - Active/进行中/needs-review → active - archive → archived - 待执行/conditional → draft - 完成/accepted → done - Declare clipper boundary: 04_Archive/Inbox-Clippings/** exempt from migration - Update depth rule: max 3 → max 4 levels (new notes only) - Add metadata-converge.mjs script for reproducibility
15 lines
247 B
Markdown
15 lines
247 B
Markdown
---
|
|
created: 2026-01-05
|
|
---
|
|
|
|
```
|
|
|
|
CREATE DATABASE scribe;
|
|
CREATE USER scribe WITH PASSWORD 'hass';
|
|
GRANT ALL PRIVILEGES ON DATABASE scribe TO scribe;
|
|
|
|
\c scribe
|
|
CREATE EXTENSION IF NOT EXISTS timescaledb;
|
|
GRANT ALL ON SCHEMA public TO scribe;
|
|
```
|