8 lines
124 B
Python
8 lines
124 B
Python
from django.db import models
|
|
|
|
|
|
class VectorField(models.Field):
|
|
|
|
def db_type(self, connection):
|
|
return 'vector'
|