9 lines
365 B
Python
9 lines
365 B
Python
"""共享列类型:JSON(SQLite 存 TEXT,PostgreSQL 存 JSON;跨库一致)。"""
|
||
from __future__ import annotations
|
||
|
||
from sqlalchemy import JSON
|
||
|
||
# 统一用 generic JSON:SQLite/PostgreSQL 均可,避免 autogenerate 对 JSONB 变体渲染异常。
|
||
# 生产若需 JSONB 的索引能力,可再按需迁移,量级上差异可忽略。
|
||
JSONType = JSON
|