diff --git a/Jenkinsfile b/Jenkinsfile index a4da055..f97c922 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,7 @@ pipeline { agent { docker { image 'kennethreitz/pipenv' - args "--user root --privileged" + args '--user root --privileged' } } diff --git a/Pipfile b/Pipfile index 1ac8b0c..eb30c7c 100644 --- a/Pipfile +++ b/Pipfile @@ -25,3 +25,4 @@ test = "django_lostplaces/manage.py test lostplaces" server = "django_lostplaces/manage.py runserver --ipv6" dbshell = "django_lostplaces/manage.py dbshell" showmigrations = "django_lostplaces/manage.py showmigrations" +makemigrations = "django_lostplaces/manage.py makemigrations --no-input"