Subject: | check for reserved words |
Would it be possible to check (maybe while deploying) column names
against reserved words for the various supported database backends? I
think this would help to keep the code as portable as possible.
I just had a problem where one of my columns was actually called
"column", which was fine during development with SQLite but I hit a
reserved work in PostgreSQL, requiring quite a lot of changes to the code.
the check could be done whenever the schema is deployed and warning
messages could indicate such portability issues.