Tracking Doctype Changes using "Customize Form"

Hi is there a way to track field changes which was done using “Customize Form”?

Thanks,
Palash

Hi
Have anyone know about it? I am also searching the same.

Most Form customization are contained in ‘Custom Field List’ and ‘Property Setter List’. Both can be accessed from the Awesome Bar, from where an import template can be downloaded for each.

Alternatively, I normally keep an eye on changes to my file structure with :

find ~/frappe-bench/ -type f -mtime -0.1 -ls

Also, keep an eye on the actual Database tables with

cd frappe-bench/; bench mariadb

>SHOW tables;

>SELECT name,modified FROM "tabProperty Setter";

Change the above double quotes ( " ) with a back tick ( ` )

2 Likes