-
-
Notifications
You must be signed in to change notification settings - Fork 50
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
dbapi: migrate to Postgres #430
Comments
The current Postgres docker image is Postgres 12, while our Python image is based on Debian buster and comes with a Postgres 11 client. That's mostly fine, but some commands don't work inside Django's |
We can |
Migration instructions: #432 (comment)
We increasingly need DBMS features that MySQL/MariaDB does not support, but Postgres does, such as UUID column types (generally), or time duration column types, IP range column types, arrays of these things (multiple IP ranges) and the like (for #347).
This issue is to track what's related to migrating dbapi to Postgres. A draft is in branch 20191106_postgres_dbapi.
Some points:
The text was updated successfully, but these errors were encountered: