You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.
If Craft is set up to use Postgres,$localAssets->orderBy('RAND()'); in Fields.php will throw exception 'SQLSTATE[42883]: Undefined function: 7 ERROR: function rand() does not exist
Replacing it with $localAssets->orderBy('random()'); seems to be the fix.
The text was updated successfully, but these errors were encountered:
If Craft is set up to use Postgres,
$localAssets->orderBy('RAND()');
inFields.php
will throw exception'SQLSTATE[42883]: Undefined function: 7 ERROR: function rand() does not exist
Replacing it with
$localAssets->orderBy('random()');
seems to be the fix.The text was updated successfully, but these errors were encountered: