File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Server-Side Components/Background Scripts/Duplicate Finder Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 1+ // Update ONLY below values to find duplicates
2+ var tableName = 'sys_user' ; // ADD: Table you want for duplicates
3+ var fieldName = 'email' ; // ADD: Field that you want to check for duplicates
4+
5+ findDuplicates ( tableName , fieldName ) ;
6+
17function findDuplicates ( tableName , fieldName ) {
28 /**************************************/
39 /*** Basic error handling on inputs ***/
@@ -59,8 +65,3 @@ function findDuplicates(tableName, fieldName) {
5965 }
6066}
6167
62- // Update below values to find duplicates
63- var tableName = 'sys_user' ; // ADD: Table you want for duplicates
64- var fieldName = 'email' ; // ADD: Field that you want to check for duplicates
65-
66- findDuplicates ( tableName , fieldName ) ;
You can’t perform that action at this time.
0 commit comments