ormx
                                
                                 ormx copied to clipboard
                                
                                    ormx copied to clipboard
                            
                            
                            
                        Reserved keyword `default` not escaped
I have an existing database with a column named default. The ormx::Table macro does not escape it in the generated SQL, causing cargo sqlx prepare to fail.
I reproduced it here: https://github.com/Kinrany/ormx-escape-default-repro
This seems to be a regression because it has been addressed in https://github.com/NyxCode/ormx/issues/1
Ah, looks like the list of reserved identifiers is empty for MySQL: https://github.com/NyxCode/ormx/blob/1a15e30d41bff74d676b70f6f05fd99cb83f0c3c/ormx-macros/src/backend/mysql/mod.rs#L14
Would it be helpful to send a PR with an incomplete list of reserved identifiers for MySQL?