Django Migrations Issue that cause my django admin panel to error out

I am working on a backend for some web app Using Django and it is working 100% fine on my local machine, However; I had to deploy on digital ocean apps and i followed a guide and it went perfectly well but when i try to open the admin panel and access some of my tables i get this error. Below is a small log portion related to error.

django.db.utils.ProgrammingError: column myapi_schedule.Start_Time does not exist
[scheduler-live] [2021-12-12 21:51:50] LINE 1: ...."Start_Date", "myapi_schedule"."Products_Array", "myapi_sch...
[scheduler-live] [2021-12-12 21:51:50]                                                              ^
[scheduler-live] [2021-12-12 21:51:50] HINT:  Perhaps you meant to reference the column "myapi_schedule.Start_Date".
Back to Top