My django app is showing 500 because one of the tables in database marked crashed and should be repaired.
InternalError at / (145, "Table './dbname/django_session' is marked as crashed and should be repaired")
I thought it was just an usual error from mysql and needed to restart but it wasn’t.
Solutions:
Login to mysql, select your dbname, and use this command:
USE user_base; REPAIR TABLE TABLE;