-
-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Django CockroachDB driver
As per #509 adds support for Django CockroachDB
- Loading branch information
1 parent
f53b3f4
commit 6f0a91b
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,6 +59,14 @@ | |
'', | ||
'' | ||
), | ||
# cockroachdb://username:[email protected]:26258/dbname | ||
('cockroachdb://username:[email protected]:26258/dbname', | ||
'django_cockroachdb', | ||
'dbname', | ||
'test.example.com', | ||
'username', | ||
'secret', | ||
26258), | ||
# mysqlgis://user:password@host:port/dbname | ||
('mysqlgis://enigma:[email protected]:5431/dbname', | ||
'django.contrib.gis.db.backends.mysql', | ||
|
@@ -156,6 +164,7 @@ | |
'postgis', | ||
'postgres_cluster', | ||
'postgres_no_ports', | ||
'cockroachdb', | ||
'mysqlgis', | ||
'cleardb', | ||
'mysql_no_password', | ||
|