From 24a7f8e9e7fbbcac5599562e48bb25e6f149fa29 Mon Sep 17 00:00:00 2001 From: Tadhg O'Higgins <2626258+tadhg-ohiggins@users.noreply.github.com> Date: Wed, 9 Aug 2023 16:59:43 -0700 Subject: [PATCH] Plurals, how do they work? --- backend/.profile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/.profile b/backend/.profile index 5060d08755..8190c754b2 100644 --- a/backend/.profile +++ b/backend/.profile @@ -38,13 +38,13 @@ export NEW_RELIC_HOST="gov-collector.newrelic.com" # being 0. if [[ "$CF_INSTANCE_INDEX" == 0 ]]; then echo 'Starting API schema deprecation' && - python manage.py drop_deprecated_api_schemas_and_views && + python manage.py drop_deprecated_api_schema_and_views && echo 'Finished API schema deprecation' && echo 'Dropping API schema' && python manage.py drop_api_schema && echo 'Finished dropping API schema' & echo 'Starting API schema creation' && - python manage.py create_api_schemas && + python manage.py create_api_schema && echo 'Finished API schema creation' && echo 'Starting migrate' && python manage.py migrate &&