1
0
Fork 0
mirror of synced 2024-08-15 18:11:40 +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 => {
// Check for duplicates
return Object.values(table?.schema || {}).reduce((acc, fieldSchema) => {
console.log(fieldSchema)
if (!fieldSchema.autocolumn || !fieldSchema.subtype) {
return acc
}