introduced a sanitization pass at the very end of the import.
parent
65423f0207
commit
77bb9b9d6a
@ -0,0 +1,10 @@
|
||||
UPDATE all_projects
|
||||
set description = TRIM(both ' ' from description)
|
||||
where description rlike '^ ' or description rlike ' $';
|
||||
|
||||
UPDATE all_projects
|
||||
set description = 'Soil/Footings'
|
||||
where description in
|
||||
(
|
||||
'Soils/Footings'
|
||||
);
|
||||
Loading…
Reference in New Issue