I'm currently using SQLModel for a project, but would like to move to something lighter-weight. ORMagic looks like a good fit, but I can't tell if it supports Pydantic-style field validation (e.g., the "name" field must be a string of length greater than zero, etc.). I'd also be grateful if you could tell me whether there's an (undocumented?) way to initialize the database connection directly, without using an environment variable - in particular, I'd like to use :memory: for testing. Thanks - @gvwilson