(.venv) root@app:~/classani# python manage.py makemigrations --verbosity 3
File not found.
File not found.
Migrations for 'master':
master/migrations/0001_initial.py
- Create model Default
- Create model Classroom
- Create model Organisation
- Create model User
- Create model Staff
- Create model Student
- Create model Subject
- Create model ClassSession
- Create model Assessment
(.venv) root@app:~/classani# python manage.py migrate --verbosity 3
File not found.
File not found.
Operations to perform:
Apply all migrations: admin, auth, contenttypes, master, sessions
Running pre-migrate handlers for application master
Running pre-migrate handlers for application admin
Running pre-migrate handlers for application auth
Running pre-migrate handlers for application contenttypes
Running pre-migrate handlers for application sessions
Running migrations:
No migrations to apply.
Your models in app(s): 'master' have changes that are not yet reflected in a migration, and so won't be applied.
Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
Running post-migrate handlers for application master
Running post-migrate handlers for application admin
Running post-migrate handlers for application auth
Running post-migrate handlers for application contenttypes
Running post-migrate handlers for application sessions
(.venv) root@app:~/classani# python manage.py makemigrations --verbosity 3
File not found.
File not found.
Migrations for 'master':
master/migrations/0002_alter_organisation_org_code_alter_staff_placeholder_and_more.py
- Alter field org_code on organisation
- Alter field placeholder on staff
- Alter field user_code on user
(.venv) root@app:~/classani# python manage.py migrate --verbosity 3
File not found.
File not found.
Operations to perform:
Apply all migrations: admin, auth, contenttypes, master, sessions
Running pre-migrate handlers for application master
Running pre-migrate handlers for application admin
Running pre-migrate handlers for application auth
Running pre-migrate handlers for application contenttypes
Running pre-migrate handlers for application sessions
Running migrations:
No migrations to apply.
Your models in app(s): 'master' have changes that are not yet reflected in a migration, and so won't be applied.
Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
Running post-migrate handlers for application master
Running post-migrate handlers for application admin
Running post-migrate handlers for application auth
Running post-migrate handlers for application contenttypes
Running post-migrate handlers for application sessions
(.venv) root@app:~/classani# python manage.py makemigrations --verbosity 3
File not found.
File not found.
Migrations for 'master':
master/migrations/0003_alter_organisation_org_code_alter_staff_placeholder_and_more.py
- Alter field org_code on organisation
- Alter field placeholder on staff
- Alter field user_code on user
(.venv) root@app:~/classani# python manage.py makemigrations --verbosity 3
File not found.
File not found.
Migrations for 'master':
master/migrations/0004_alter_organisation_org_code_alter_staff_placeholder_and_more.py
- Alter field org_code on organisation
- Alter field placeholder on staff
- Alter field user_code on user
(.venv) root@app:~/classani# python manage.py makemigrations --verbosity 3
File not found.
File not found.
Migrations for 'master':
master/migrations/0005_alter_organisation_org_code_alter_staff_placeholder_and_more.py
- Alter field org_code on organisation
- Alter field placeholder on staff
- Alter field user_code on user
(.venv) root@app:~/classani#
it keeps saying it needs migrations, and when i make migrations it gives me the same thing every time and refuses to migrate for some reason.
works fine with sqlite on local machine.