mirror of https://github.com/django/django.git
15 lines
352 B
Python
15 lines
352 B
Python
from django.db import connection, migrations
|
|
|
|
if connection.features.supports_raster:
|
|
from django.contrib.postgres.operations import CreateExtension
|
|
|
|
class Migration(migrations.Migration):
|
|
operations = [
|
|
CreateExtension("postgis_raster"),
|
|
]
|
|
|
|
else:
|
|
|
|
class Migration(migrations.Migration):
|
|
operations = []
|