1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/Doctrine/Identifier.php

25 lines
496 B
PHP
Raw Normal View History

2006-05-30 12:42:10 +04:00
<?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;
}
?>