There is a rake command you could run;
rake db:sessions:clear #Clear the sessions table
or maybe less intrusive;
rake db:sessions:trim # Trim old sessions from the table (default: > 30 days)
Maybe schedule this using cron. not sure if it can also be done via the scheduler. Also i would expect old sessions would be cleaned automatically, but i’m not sure it’s happening, at least not for me.