diff options
Diffstat (limited to 'django/contrib/postgres/operations.py')
-rw-r--r-- | django/contrib/postgres/operations.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/django/contrib/postgres/operations.py b/django/contrib/postgres/operations.py index cb9765928a..be9ed9cb23 100644 --- a/django/contrib/postgres/operations.py +++ b/django/contrib/postgres/operations.py @@ -33,6 +33,12 @@ class BtreeGinExtension(CreateExtension): self.name = 'btree_gin' +class BtreeGistExtension(CreateExtension): + + def __init__(self): + self.name = 'btree_gist' + + class CITextExtension(CreateExtension): def __init__(self): |