1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/docs/Object relational mapping - Indexes - Special indexes.php

21 lines
500 B
PHP
Raw Normal View History

2007-04-14 01:49:11 +04:00
Doctrine supports many special indexes. These include Mysql FULLTEXT and Pgsql GiST indexes.
In the following example we define a Mysql FULLTEXT index for the field 'content'.
<?php
renderCode("<?php
class Article
{
public function setTableDefinition()
{
\$this->hasColumn('name', 'string');
\$this->hasColumn('content', 'string');
\$this->index('content', array('fields' => 'content',
'type' => 'fulltext'));
}
}
?>");