Persist externalType changes

This commit is contained in:
Adria Navarro 2024-04-17 10:15:42 +02:00
parent 2da0daafe5
commit 21898afb29
1 changed files with 6 additions and 1 deletions

View File

@ -380,7 +380,12 @@ function copyExistingPropsOver(
continue continue
} }
table.schema[key] = existingTableSchema[key] table.schema[key] = {
...existingTableSchema[key],
externalType:
existingTableSchema[key].externalType ||
table.schema[key].externalType,
}
} }
} }
return table return table