3ef19610f3
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
7 lines
255 B
Bash
7 lines
255 B
Bash
#!/bin/sh
|
|
|
|
# For undoing/redoing everything
|
|
# Needed in special cases and needs to be avoided as soon as
|
|
# uncloud.version >= 1
|
|
for a in */migrations; do rm ${a}/*.py; done
|
|
for a in */migrations; do python manage.py makemigrations ${a%%/migrations}; done
|