From ccd701ea6084815658e57ead4cec4694164d2299 Mon Sep 17 00:00:00 2001 From: reverend Date: Fri, 16 Jul 2021 13:08:42 +0200 Subject: [PATCH] Pipfile script for migrations --- Jenkinsfile | 2 +- Pipfile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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"