1
0
mirror of synced 2025-01-18 06:21:40 +03:00
This commit is contained in:
zYne 2007-02-16 20:27:05 +00:00
parent 0c82cfb041
commit 84cf99fbf8

View File

@ -293,7 +293,7 @@ class MysqlIndexTestRecord extends Doctrine_Record
$this->hasColumn('code', 'integer', 4); $this->hasColumn('code', 'integer', 4);
$this->hasColumn('content', 'string', 4000); $this->hasColumn('content', 'string', 4000);
$this->index('content', array('fields' => 'content', 'type' => 'fulltext')); $this->index('content', array('fields' => 'content', 'type' => 'fulltext'));
$this->index('namecode', array('fields' => array('name', 'code'), $this->index('namecode', array('fields' => array('name', 'code'),
'type' => 'unique')); 'type' => 'unique'));