hello! how do you organize your schemas with drizzle ones? this is something I struggle a lot when I have schemas with relations I have this example https://effect.website/play/#11688131880f where I have a user and account tables with a relation between the two. I have two schemas one for user and account. for my domain model i want to have the user with account, so from the db layer using drizzle in my case i would get the user with the account and I want to pass the db data to the schema.decode call however I may need to transform the db data before passing it to the
Schema.decode...
Schema.decode...
I hope the example from my playground explains the issues I'm facing
what is the pattern to map the db layer data to schemas?