mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-10-17 21:31:24 +03:00
17 lines
280 B
PHP
17 lines
280 B
PHP
<?php
|
|
|
|
namespace BookStack\Search\Vectors;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property string $entity_type
|
|
* @property int $entity_id
|
|
* @property string $text
|
|
* @property string $embedding
|
|
*/
|
|
class SearchVector extends Model
|
|
{
|
|
public $timestamps = false;
|
|
}
|