I have a map in AGOL and I want to adjust the data type of some of the fields. Can I do this without re-publishing?
Below are the two fields. They both need to be changed from Text data type to Long Integer data type.
{
"name" : "Tree_ID",
"type" : "esriFieldTypeString",
"alias" : "Tree_ID",
"sqlType" : "sqlTypeOther", "length" : 50,
"nullable" : false,
"editable" : true,
"domain" : null,
"defaultValue" : null
},
{
"name" : "Height",
"type" : "esriFieldTypeString",
"alias" : "Tree Height",
"sqlType" : "sqlTypeOther", "length" : 8,
"nullable" : true,
"editable" : true,
"domain" : null,
"defaultValue" : null
}