## RFC We need to stop using reserved keywords (e.g.: `order`) as table names. But if it's a must, then wrap them in backticks. Same for table columns: names such as `group`, `order` etc must be avoided. | Q | A | | ------------------- | ------ | | Proposed Version(s) | 6.1.0 | | BC Break? | Yes | --- > [!NOTE] > These reserved keywords differ based on the platform. Example: Cannot create table `user` on PostgreSQL, but it works on MariaDB.
RFC
We need to stop using reserved keywords (e.g.:
order) as table names.But if it's a must, then wrap them in backticks.
Same for table columns: names such as
group,orderetc must be avoided.Note
These reserved keywords differ based on the platform.
Example: Cannot create table
useron PostgreSQL, but it works on MariaDB.