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

chore: Use django ORM to perform sql commands #2827

Merged
merged 4 commits into from
Feb 27, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
comment on using django orm
  • Loading branch information
hubertdeng123 committed Feb 26, 2024
commit 90a1198a4d96a5c9cd292fcc3accc9ad231b8c07
1 change: 1 addition & 0 deletions install/set-up-and-migrate-database.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ until $dc exec postgres psql -U postgres -c "select 1" >/dev/null 2>&1 || [ $RET
sleep 1
done

# Using django ORM to provide broader support for users with external databases
$dcr web shell -c "
from django.db import connection

Expand Down
Loading