fix: sync the database after migrating

This commit is contained in:
stupidcomputer 2024-07-24 01:32:23 -05:00
parent c35c96e16b
commit bccfa280e1
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
python3 manage.py makemigrations python3 manage.py makemigrations
python3 manage.py migrate python3 manage.py migrate --run-syncdb
exec "$@" exec "$@"