2 -- @description: Nicht mehr benötigte Indizes löschen (es gibt nun einen Primary Key)
 
   3 -- @depends: release_3_3_0
 
   5 DROP    INDEX orderitems_id_key;
 
   6 REINDEX INDEX orderitems_pkey;
 
   8 DROP    INDEX chart_id_key;
 
   9 REINDEX INDEX chart_pkey;
 
  11 DROP    INDEX customer_id_key;
 
  12 REINDEX INDEX customer_pkey;
 
  14 DROP    INDEX employee_id_key;
 
  15 REINDEX INDEX employee_pkey;
 
  17 DROP    INDEX vendor_id_key;
 
  18 REINDEX INDEX vendor_pkey;
 
  21 REINDEX INDEX ar_pkey;
 
  23 DROP    INDEX units_name_idx;
 
  24 REINDEX INDEX units_pkey;
 
  27 REINDEX INDEX ap_pkey;
 
  29 DROP    INDEX invoice_id_key;
 
  30 REINDEX INDEX invoice_pkey;
 
  33 REINDEX INDEX oe_pkey;
 
  35 DROP    INDEX parts_id_key;
 
  36 REINDEX INDEX parts_pkey;
 
  38 DROP    INDEX project_id_key;
 
  39 REINDEX INDEX project_pkey;
 
  42 REINDEX INDEX gl_pkey;
 
  44 DROP    INDEX department_id_key;
 
  45 REINDEX INDEX department_pkey;