1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/Doctrine/Identifier.php
2006-05-30 08:42:10 +00:00

25 lines
496 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;
/**
* constant for composite identifier
*/
const COMPOSITE = 4;
}
?>