I need to create a tsvector field ( link ) of postgres in my table > Documents I already searched in several places how to do it but I can not find it.
Schema::create('documentos', function (Blueprint $table) {
$table->increments('id');
$table->string('nombre');
$table->string('image');
$table->string('minimagen');
$table->string('fecha');
$table->longText('bytes');
//$table->string('mytsvector');
$table->integer('user_id')->unsigned();
$table->foreign('user_id')->references('id')->on('users');
$table->timestamps();
});