]> wagnertech.de Git - projects.git/blob - verleihnix/Verleihnix/impl/data/build/classes/propel/map/MediumTableMap.php
verleihnix komplett eingescheckt
[projects.git] / verleihnix / Verleihnix / impl / data / build / classes / propel / map / MediumTableMap.php
1 <?php
2
3
4
5 /**
6  * This class defines the structure of the 'medium' 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 MediumTableMap extends TableMap
18 {
19
20     /**
21      * The (dot-path) name of this class
22      */
23     const CLASS_NAME = 'propel.map.MediumTableMap';
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('medium');
36         $this->setPhpName('Medium');
37         $this->setClassname('Medium');
38         $this->setPackage('propel');
39         $this->setUseIdGenerator(true);
40         $this->setSingleTableInheritance(true);
41         // columns
42         $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
43         $this->addColumn('mod', 'Mod', 'INTEGER', true, null, null);
44         $this->addColumn('autor', 'Autor', 'VARCHAR', true, 100, null);
45         $this->addColumn('titel', 'Titel', 'VARCHAR', true, 100, null);
46         $this->addColumn('eigentumer', 'Eigentumer', 'VARCHAR', true, 100, null);
47         $this->addColumn('zz_bei', 'ZzBei', 'VARCHAR', true, 100, null);
48         $this->addColumn('kommentar', 'Kommentar', 'VARCHAR', true, 100, null);
49         $this->addColumn('class_key', 'ClassKey', 'INTEGER', true, null, null);
50         // validators
51     } // initialize()
52
53     /**
54      * Build the RelationMap objects for this table relationships
55      */
56     public function buildRelations()
57     {
58     } // buildRelations()
59
60 } // MediumTableMap