We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10dd9d0 commit e4ce1a6Copy full SHA for e4ce1a6
src/forklift/core.py
@@ -482,6 +482,7 @@ def _mirror_fields(source, destination):
482
"DateOnly": "DATEONLY",
483
"Double": "DOUBLE",
484
"Guid": "GUID",
485
+ "GlobalID": "GUID",
486
"Integer": "LONG",
487
"Single": "FLOAT",
488
"SmallInteger": "SHORT",
@@ -492,7 +493,7 @@ def _mirror_fields(source, destination):
492
493
494
add_fields = []
495
for field in arcpy.da.Describe(source)["fields"]:
- if field.type in ["OID", "GlobalID"]:
496
+ if field.type == "OID":
497
continue
498
499
add_fields.append([field.name, TYPES[field.type], field.aliasName, field.length])
0 commit comments