]> wagnertech.de Git - projects.git/blob - verleihnix/Verleihnix/impl/data/build/classes/propel/map/WerkzeugTableMap.php
eclipse-cpp added
[projects.git] / verleihnix / Verleihnix / impl / data / build / classes / propel / map / WerkzeugTableMap.php
1 <?php
2
3
4
5 /**
6  * This class defines the structure of the 'werkzeug' table.
7  *
8  *
9  *
10  * This map class is used by Propel to do runtime db structure discovery.
11  * For example, the createSelectSql() method checks the type of a given column used in an
12  * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
13  * (i.e. if it's a text column type).
14  *
15  * @package    propel.generator.propel.map
16  */
17 class WerkzeugTableMap extends TableMap
18 {
19
20     /**
21      * The (dot-path) name of this class
22      */
23     const CLASS_NAME = 'propel.map.WerkzeugTableMap';
24
25     /**
26      * Initialize the table attributes, columns and validators
27      * Relations are not initialized by this method since they are lazy loaded
28      *
29      * @return void
30      * @throws PropelException
31      */
32     public function initialize()
33     {
34         // attributes
35         $this->setName('werkzeug');
36         $this->setPhpName('Werkzeug');
37         $this->setClassname('Werkzeug');
38         $this->setPackage('propel');
39         $this->setUseIdGenerator(true);
40         // columns
41         $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
42         $this->addColumn('mod', 'Mod', 'INTEGER', true, null, null);
43         $this->addColumn('typ', 'Typ', 'VARCHAR', true, 100, null);
44         $this->addColumn('beschreibung', 'Beschreibung', 'VARCHAR', true, 100, null);
45         $this->addColumn('eigentumer', 'Eigentumer', 'VARCHAR', true, 100, null);
46         $this->addColumn('zz_bei', 'ZzBei', 'VARCHAR', true, 100, null);
47         // validators
48     } // initialize()
49
50     /**
51      * Build the RelationMap objects for this table relationships
52      */
53     public function buildRelations()
54     {
55     } // buildRelations()
56
57 } // WerkzeugTableMap