django test postgres extensions intarray

Solutions on MaxInterview for django test postgres extensions intarray by the best coders in the world

showing results for - "django test postgres extensions intarray"
Juan Martín
15 Aug 2019
1from django.contrib.postgres.operations import CreateExtension
2
3class Migration(migrations.Migration):
4    ...
5
6    operations = [
7        CreateExtension(name='fuzzystrmatch'),
8        ...
9    ] 
10