remove duplicate staff entries from qa_staff
1 unresolved thread
1 unresolved thread
Merge request reports
Activity
41 41 WHERE "group" = 'DA'; 42 42 """ 43 43 ) 44 45 # Remove duplicate entries 46 op.execute( 47 """ 48 CREATE TABLE qa_staff_tmp (LIKE qa_staff); 49 """ 50 ) 51 op.execute( 52 """ 53 INSERT INTO qa_staff_tmp(user_name, "group", available, email) 54 SELECT 55 DISTINCT ON (user_name, "group") user_name, "group", available, email enabled an automatic merge when the pipeline for 3a04f4e9 succeeds
Please register or sign in to reply