Commit 4f361df6 authored by zYne's avatar zYne

updated doc block

parent 69a97d13
...@@ -20,14 +20,10 @@ ...@@ -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 @@ ...@@ -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 { ...@@ -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';
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment