vkk.migrations
This module contains the migration scripts for the database. These are usually generated by the Django framework, but can also be manually edited in order to satisfy specific needs.
These migrations scripts are usually generated and executed by calling:
python manage.py makemigrations
python manage.py migrate
For further details, please consult the Django documentation.
1""" 2This module contains the migration scripts for the database. These are usually 3generated by the Django framework, but can also be manually edited in order 4to satisfy specific needs. 5 6These migrations scripts are usually generated and executed by calling: 7``` 8python manage.py makemigrations 9python manage.py migrate 10``` 11 12For further details, please consult the [Django documentation](https://docs.djangoproject.com/en/4.2/topics/migrations/). 13"""