Internal table columns cannot start with _

This commit is contained in:
Mel O'Hagan 2022-05-24 10:22:20 +01:00
parent e3bc9c4c90
commit aba79086a0
1 changed files with 3 additions and 1 deletions

View File

@ -304,7 +304,9 @@
) )
} }
const newError = {} const newError = {}
if (PROHIBITED_COLUMN_NAMES.some(name => fieldInfo.name === name)) { if (!external && fieldInfo.name?.startsWith("_")) {
newError.name = `Column name cannot start with an underscore.`
} else if (PROHIBITED_COLUMN_NAMES.some(name => fieldInfo.name === name)) {
newError.name = `${PROHIBITED_COLUMN_NAMES.join( newError.name = `${PROHIBITED_COLUMN_NAMES.join(
", " ", "
)} are not allowed as column names` )} are not allowed as column names`