Is your feature request related to a problem? Please describe.
During migration of erpnext from V13 to V14 this error occured while the fixtures where processed:
UniqueFieldnameError: Employee: Fieldname column_break_55 appears multiple times in rows 117, 117
The reason: in V13 I customized Employee and added a column break. The name of my column break clashed with a new column break introduced in Employee by ERPnext V14.
I resolved this by renaming my column break to column_break_56.
Describe the solution you'd like
To prevent future clashes prefix all customized column breaks with "custom". This would name my column break as "custom_column_break_55", and clashes will never happen.
Is your feature request related to a problem? Please describe. During migration of erpnext from V13 to V14 this error occured while the fixtures where processed:
UniqueFieldnameError: Employee: Fieldname column_break_55 appears multiple times in rows 117, 117
The reason: in V13 I customized Employee and added a column break. The name of my column break clashed with a new column break introduced in Employee by ERPnext V14.
I resolved this by renaming my column break to column_break_56.
Describe the solution you'd like To prevent future clashes prefix all customized column breaks with "custom". This would name my column break as "custom_column_break_55", and clashes will never happen.
Describe alternatives you've considered
Additional context