liampalmer0 / fit-of-the-day

A daily outfit recommender
0 stars 0 forks source link

Liam: add bottom missing article image #85

Closed liampalmer0 closed 3 years ago

liampalmer0 commented 3 years ago

Updated missing article image images to be top and bottom. Run these two sql statements to update the database with correct images.

UPDATE article set filepath='s-null.png' where filepath='null.png' AND garment_type_id=1;
UPDATE article set filepath='p-null.png' where filepath='null.png' AND garment_type_id!=1;

@Dabesu