Contact import user_id column always set null
This commit is contained in:
parent
6d4adf58f5
commit
e6bb24bdca
@ -21,6 +21,7 @@ class Vendors extends Import
|
|||||||
|
|
||||||
$row['type'] = 'vendor';
|
$row['type'] = 'vendor';
|
||||||
$row['country'] = !empty($country) ? $country : null;
|
$row['country'] = !empty($country) ? $country : null;
|
||||||
|
$row['user_id'] = null;
|
||||||
|
|
||||||
return $row;
|
return $row;
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ class Customers extends Import
|
|||||||
|
|
||||||
$row['type'] = 'customer';
|
$row['type'] = 'customer';
|
||||||
$row['country'] = !empty($country) ? $country : null;
|
$row['country'] = !empty($country) ? $country : null;
|
||||||
|
$row['user_id'] = null;
|
||||||
|
|
||||||
return $row;
|
return $row;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user