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

3 lines
177 B
Smarty

<?php if ($table->getIdMethod() == "native") { ?>
CREATE SEQUENCE <?php echo $table->getSequenceName()?> INCREMENT BY 1 START WITH 1 NOMAXVALUE NOCYCLE NOCACHE ORDER;
<?php } ?>