django test postgres extensions intarray

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
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