1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-10-17 21:31:24 +03:00
Files
bookstack/app/Search/Vectors/SearchVector.php
2025-03-24 16:28:14 +00:00

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;
}