feat: 匠厂数据管理展示元数据规范——元数据表初始化/校验、display_order 契约、文档与测试
All checks were successful
技能自动化发布 / release (push) Successful in 5s

This commit is contained in:
2026-07-01 11:39:28 +08:00
parent d17804e45b
commit 707d97760f
12 changed files with 948 additions and 27 deletions

View File

@@ -4,6 +4,7 @@ from __future__ import annotations
import sqlite3
from db.display_metadata import init_display_metadata
from util.runtime_paths import get_db_path
@@ -31,6 +32,7 @@ def init_db() -> None:
)
"""
)
init_display_metadata(cur)
conn.commit()
finally:
conn.close()