when I run this command “python3 manage.py runserver 0.0.0.0:8081”
You have 17 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.
Run ‘python manage.py migrate’ to apply them
I googled it and found this
ou should think of migrations as a version control system for your database schema. makemigrations
is responsible for packaging up your model changes into individual migration files - analogous to commits - and migrate
is responsible for applying those to your database.
should I run “python manage.py migrate”