Removed debug console statement

This commit is contained in:
Dean 2023-01-29 22:03:49 +00:00
parent 9786c85bd3
commit f9af98d5d4
1 changed files with 0 additions and 1 deletions

View File

@ -6,7 +6,6 @@
const verifyAutocolumns = table => {
// Check for duplicates
return Object.values(table?.schema || {}).reduce((acc, fieldSchema) => {
console.log(fieldSchema)
if (!fieldSchema.autocolumn || !fieldSchema.subtype) {
return acc
}