4 lines
135 B
Bash
4 lines
135 B
Bash
|
for app in whatever I want; do
|
||
|
./manage.py makemigrations --empty $app
|
||
|
vim seminar/migrations/whatever.py # add the other as depends.
|