from django.contrib.postgres.fields import ArrayField
class ArrayField(base_field, size=None, **options)
FooModel.objects.filter(array_field_name__contains=[objects, to, check])
FooModel.objects.filter(array_field_name__contained_by=[objects, to, check])
Note that although the size param...