mlops2 / tests /conftest.py
marintosti12
clean projet and rework readme
94dd2ae
raw
history blame contribute delete
189 Bytes
from sqlalchemy.dialects.postgresql import JSONB
from sqlalchemy.ext.compiler import compiles
@compiles(JSONB, "sqlite")
def compile_jsonb_sqlite(type_, compiler, **kw):
return "JSON"