Limitations / 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, or slash (
/
) characters
Column Names
The following column names are prohibited/reserved on the platform:
UID
author
createdAt
updatedAt
Cannot contain spaces, dots, or slash (
/
) charactersCannot contain special characters that follow the regex pattern:
!/^_.*_$/
Last updated