1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/manual/docs/Getting started - Indexes - Index options.php
2007-01-25 12:34:03 +00:00

21 lines
759 B
PHP

<?php ?>
Doctrine offers many index options, some of them being db-specific. Here is a full list of availible options:
<div class='sql'>
<pre>
unique => boolean(true / false)
whether or not the index is unique index
sorting => string('ASC' / 'DESC')
what kind of sorting does the index use (ascending / descending)
primary => boolean(true / false)
whether or not the index is primary index
fulltext => boolean(true / false)
whether or not the specified index is a FULLTEXT index (only availible on Mysql)
gist => boolean(true / false)
whether or not the specified index is a GiST index (only availible on Pgsql)
</pre>
</div>