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

21 lines
406 B
PHP
Raw Normal View History

2006-05-30 12:42:10 +04:00
<?php
class Doctrine_Identifier {
/**
* 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;
}