diff --git a/README.md b/README.md index 54bf901bf9cb769699108bf4578966685f4afe9c..0ec7c2ab86f09a5d66ba2f25318bf4a9124386ff 100644 --- a/README.md +++ b/README.md @@ -405,12 +405,12 @@ The button to download a collection was not working. This is due, most likely, t - Make sure the database is snapshoted/dumped so we don't lose user data. Also, stop the frontend so no new data will be inserted during this operation. - Make every user have a *streak* of 0 - Make every user have a *high_streak* of 0 - (```SQL - update "users" set streak = 0, high_streak = 0; - ```) + ```SQL + update "users" set streak = 0, high_streak = 0; + ``` - Make every user have a *last_action_at* of the current_date, **wihtout timestamps, just the year-month-day** - (```SQL - update "users" set last_action_at = current_timestamp; - ```) + ```SQL + update "users" set last_action_at = current_timestamp; + ``` - Run the new backend and do some testing. Try to get statistics and make a search. If the searchs breake, remember to reindex everything via rails console. - Point the frontend to the new API and all should be good