[Django]-Remove a migration from south migration history

1👍

delete from south_migrationhistory where app_name='robots';

south_migrationhistory table just keeps track of what migrations have been applied and what are yet to be applied. Since 0.8 of robots doesn’t have any migration files any entries for it from table south_migrationhistory can be removed and it won’t affect anything else.

Leave a comment