1
0
mirror of synced 2025-01-31 20:41:44 +03:00
doctrine2/classes/Identifier.class.php
2006-04-23 08:12:01 +00:00

21 lines
405 B
PHP

<?php
class Doctrine_Identifier {
/**
* constant for unique identifier
*/
const UNIQUE = 0;
/**
* constant for auto_increment identifier
*/
const AUTO_INCREMENT = 1;
/**
* constant for sequence identifier
*/
const SEQUENCE = 2;
/**
* constant for normal identifier
*/
const NORMAL = 3;
}
?>