1
0
Fork 0
mirror of synced 2024-09-11 15:08:05 +12:00

Removed debug console statement

This commit is contained in:
Dean 2023-01-29 22:03:49 +00:00
parent 9786c85bd3
commit f9af98d5d4

View file

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