mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
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'
|