Commit c00ad3ccb9cc57ae9ac656df8c2713237d58f095
1 parent
6c438de0
remarketing
Showing
1 changed file
with
0 additions
and
1 deletions
Show diff stats
console/controllers/FeedController.php
... | ... | @@ -30,7 +30,6 @@ class FeedController extends Controller |
30 | 30 | |
31 | 31 | public function getProducts() { |
32 | 32 | return Product::find() |
33 | - ->limit(1000) | |
34 | 33 | ->innerJoin(ProductVariant::tableName(), ProductVariant::tableName() .'.product_id = '. Product::tableName() .'.product_id') |
35 | 34 | ->where(['and', ProductVariant::tableName().'.status = 0', ProductVariant::tableName().'.stock > 0']) |
36 | 35 | ->all(); | ... | ... |