[Answer]-Edx platform table doesnt exist after migrate

1👍

Make sure you have added your new Django application to the INSTALLED_APPS list in the LMS settings:

INSTALLED_APPS = (
    ...
    'yourapp',

Then re-run the lms migrations:

$ paver update_db -s devstack

Leave a comment