Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plurals, how do they work? #1779

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backend/.profile
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&
Expand Down