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

15 lines
404 B
Smarty

----------------------------------------------------------------------
-- <?php echo $tablefk->getName() ?>
----------------------------------------------------------------------
<?php
// for pgsql table = tablefk, because
// foreignkey.tpl can be loaded by table.tpl also
//$generator->put("table", $tablefk);
$fk = $generator->parse("$basepath/foreignkey.tpl");
if ($fk != "") {
echo $fk;
}
?>