6 lines
81 B
Bash
6 lines
81 B
Bash
#!/bin/bash
|
|
|
|
# Stop if an error is encountered.
|
|
set -e
|
|
|
|
python manage.py migrate
|