Skip to content

Instantly share code, notes, and snippets.

@thomas1989
thomas1989 / uuid_user.py
Created May 6, 2024 17:55 — forked from gmolveau/uuid_user.py
sqlalchemy uuid for sqlite
########################
# UUID for SQLite hack #
########################
from sqlalchemy.types import TypeDecorator, CHAR
from sqlalchemy.dialects.postgresql import UUID
import uuid
class GUID(TypeDecorator):