ikinci temizlik tamamlandı
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
//weldlogs iso number trim problems
|
||||
$weldLogUpdate = db("weld_logs")->update([
|
||||
'iso_number' => DB::raw('TRIM(iso_number)'),
|
||||
'line_number' => DB::raw('TRIM(line_number)'),
|
||||
'fluid_code' => DB::raw('TRIM(fluid_code)'),
|
||||
]);
|
||||
|
||||
$lineListUpdate = db("line_lists")->update([
|
||||
'line_no' => DB::raw('TRIM(line_no)'),
|
||||
'fluid_code' => DB::raw('TRIM(fluid_code)'),
|
||||
]);
|
||||
|
||||
echo "weld_logs: $weldLogUpdate, line_lists: $lineListUpdate";
|
||||
?>
|
||||
Reference in New Issue
Block a user