Announcement

Collapse
No announcement yet.

Change field type

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Change field type

    How can I change field type of "name" in contact - from personName to Varchar?

  • #2
    Create custom/Espo/Custom/Resources/metadata/entityDefs/Contact.json

    PHP Code:
    {
        
    "fields": {
            
    "name": {
                
    "type""varchar"
            
    }
        }

    Rebuild.

    I've not tested it. Not sure if it won't cause problems.

    Comment


    • #3
      Thank You, it's working

      Comment

      Working...
      X