Hello,
The site's been migrated from 5.6 to 6.1.4 and there are 300+ profiles in the database marked as Featured. I've check a few of these in the admin area and sure enough the check box for Featured is ticked.
What I want to do is remove the marking that makes them featured. I see in the database table Profile that the Featured column can be either 0, 1, or 2, so surely the command would be:
UPDATE 'Profiles' SET `Featured` =0 WHERE `Featured` =1
or
UPDATE 'Profiles' SET `Featured` =0 WHERE `Featured` =2
but these commands produce a syntax error.
Anyone know what the command would be?
And what's the difference between 1 and 2 anyway? Surely it's either on or off since it's a checkbox?
Thanks