Naming Conventions
Table Names
The following rules apply to table names:
Must be plural (end with an 's').
Cannot start with
config-
Cannot contain special characters that follow the regex pattern:
!/^_.*_$/
Cannot contain spaces, dots, slash (
/
), or hyphen ( - ) characters
Column Names
The following column names are prohibited/reserved on the platform:
Cannot contain spaces, dots, slash (
/
), or hyphen ( - ) charactersCannot contain special characters that follow the regex pattern:
!/^_.*_$/
Last updated