- 🇮🇳India mehul.shah
This line
$query->condition('f.data', '%' . db_like(' field_encrypt";a:1:{s:7:"encrypt";i:0 ') . '%', 'LIKE');
does not seem to work because of the space before and after. If we change it to$query->condition('f.data', '%' . db_like('field_encrypt";a:1:{s:7:"encrypt";i:0') . '%', 'LIKE');
it works properly.