7 lines
158 B
Python
7 lines
158 B
Python
from django.contrib.postgres.operations import CreateExtension
|
|
|
|
|
|
class VectorExtension(CreateExtension):
|
|
def __init__(self):
|
|
self.name = 'vector'
|