I followed the following documentation https://docs.digitalocean.com/tutorials/app-deploy-django-app/
My app has deployed fine however when I push changes that require me to run python manage.py makemigrations and python manage.py migrate I see the following…
after makemigrations i see the changes migrations being made
but when I run migrations it says there are no migrations…
Basically the posgres database does not update and I have to delete the database after every migration…
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello,
Do you have an additional App component for running your Django migration?
You could add the following to your app yaml file:
For a reference, here is an example yaml file that contains all of the required components:
https://github.com/digitalocean/sample-django/blob/static/.do/app.yaml
Let me know how it goes!
Best,
Bobby