mirror of
https://github.com/kennethreitz/dj-database-url.git
synced 2026-06-05 23:10:17 +00:00
Merge pull request #7 from fcurella/master
Added ``postgis`` url scheme
This commit is contained in:
+1
-1
@@ -20,7 +20,7 @@ Parse an arbitrary Database URL::
|
||||
Supported databases
|
||||
-------------------
|
||||
|
||||
Support currently exists for PostgreSQL, MySQL and SQLite.
|
||||
Support currently exists for PostgreSQL, PostGIS, MySQL and SQLite.
|
||||
|
||||
SQLite connects to file based databases. The same URL format is used, omitting
|
||||
the hostname, and using the "file" portion as the filename of the database.
|
||||
|
||||
@@ -42,6 +42,9 @@ def parse(url):
|
||||
if url.scheme == 'postgres':
|
||||
config['ENGINE'] = 'django.db.backends.postgresql_psycopg2'
|
||||
|
||||
if url.scheme == 'postgis':
|
||||
config['ENGINE'] = 'django.contrib.gis.db.backends.postgis'
|
||||
|
||||
if url.scheme == 'mysql':
|
||||
config['ENGINE'] = 'django.db.backends.mysql'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user