Files
luos/thirdparty/propel-generator/templates/sql/base/pgsql/index.tpl
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

3 lines
237 B
Smarty

<?php foreach ($table->getIndices() as $index) { ?>
CREATE <?php if($index->getIsUnique()) { ?>UNIQUE<?php } ?> INDEX <?php echo $index->getName() ?> ON <?php echo $table->getName() ?> (<?php echo $index->getColumnList()?>);
<?php } ?>