django test postgres extensions intarray code example
Example: django test postgres extensions intarray
from django.contrib.postgres.operations import CreateExtension
class Migration(migrations.Migration):
...
operations = [
CreateExtension(name='fuzzystrmatch'),
...
]