mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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 = []
 |