I have a new Hanami 2 application and have configured Rom according to the “Getting Started” guidelines. I have access to my (legacy) database now, so this is working.
Now, I want to change a few things in my schema so that it is easier to work with it. Some columns in the database are in uppercase and I want to access them in lowercase. I tried to “fix” this with a custom entity and overwriting the method_missing
method but this feels a little bit clunky. Is there a way I can configure the schema to automatically lower case the column names?