schema_metaStores schema/runtime metadata as key-value rows.
| Column | Type | Null | Default | Notes |
|---|---|---|---|---|
key |
TEXT |
no | none | Metadata key. |
value |
TEXT |
no | none | Metadata value. |
updated_at |
TEXT |
no | none | ISO UTC timestamp written by the application. |
key| Key | Meaning |
|---|---|
schema_version |
Current relational schema version. Current value: 2. |
registry_updated_at |
Last registry update timestamp used for API/export metadata. |
None.
CREATE TABLE IF NOT EXISTS schema_meta (
key TEXT PRIMARY KEY,
value TEXT NOT NULL,
updated_at TEXT NOT NULL
);