1
0
mirror of synced 2025-01-18 22:41:43 +03:00
doctrine2/classes/Identifier.class.php
doctrine 90d34063af Preliminary support for composite primary keys
Many-to-Many alias bug fixed
2006-05-16 20:37:26 +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;
}
?>