1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

updated doc block

This commit is contained in:
zYne 2006-11-16 18:45:51 +00:00
parent 69a97d13be
commit 4f361df6c3

View file

@ -20,14 +20,10 @@
*/ */
/** /**
* @package Doctrine * Doctrine_Import_Builder
* @url http://www.phpdoctrine.com * Import builder is responsible of building Doctrine ActiveRecord classes
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * based on a database schema.
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com> *
* @version $Id$
/**
* class Doctrine_Import_Builder
* Is responsible of building Doctrine structure based on a database schema.
* @package Doctrine * @package Doctrine
* @category Object Relational Mapping * @category Object Relational Mapping
* @link www.phpdoctrine.com * @link www.phpdoctrine.com
@ -35,6 +31,7 @@
* @since 1.0 * @since 1.0
* @version $Revision$ * @version $Revision$
* @author Konsta Vesterinen <kvesteri@cc.hut.fi> * @author Konsta Vesterinen <kvesteri@cc.hut.fi>
* @author Jukka Hassinen <Jukka.Hassinen@BrainAlliance.com>
*/ */
class Doctrine_Import_Builder { class Doctrine_Import_Builder {
@ -113,13 +110,13 @@ class Doctrine_Import_Builder {
if($column['notnull']) { if($column['notnull']) {
$a[] = '\'notnull\' => true'; $a[] = '\'notnull\' => true';
} }
if($column['primary']) { if($column['primary']) {
$a[] = '\'primary\' => true'; $a[] = '\'primary\' => true';
} }
if($column['autoinc']) { if($column['autoinc']) {
$a[] = '\'autoincrement\' => true'; $a[] = '\'autoincrement\' => true';
} }
if($column['unique']) { if($column['unique']) {
$a[] = '\'unique\' => true'; $a[] = '\'unique\' => true';
} }