]> BookStack Code Mirror - bookstack/blob - app/Search/Vectors/SearchVector.php
Vectors: Built content vector indexing system
[bookstack] / app / Search / Vectors / SearchVector.php
1 <?php
2
3 namespace BookStack\Search\Vectors;
4
5 use Illuminate\Database\Eloquent\Model;
6
7 /**
8  * @property string $entity_type
9  * @property int $entity_id
10  * @property string $text
11  * @property string $embedding
12  */
13 class SearchVector extends Model
14 {
15     public $timestamps = false;
16 }