Persist externalType changes
This commit is contained in:
parent
2da0daafe5
commit
21898afb29
|
@ -380,7 +380,12 @@ function copyExistingPropsOver(
|
|||
continue
|
||||
}
|
||||
|
||||
table.schema[key] = existingTableSchema[key]
|
||||
table.schema[key] = {
|
||||
...existingTableSchema[key],
|
||||
externalType:
|
||||
existingTableSchema[key].externalType ||
|
||||
table.schema[key].externalType,
|
||||
}
|
||||
}
|
||||
}
|
||||
return table
|
||||
|
|
Loading…
Reference in New Issue