--- /dev/null
+<?php
+
+
+
+/**
+ * This class defines the structure of the 'medium' table.
+ *
+ *
+ *
+ * This map class is used by Propel to do runtime db structure discovery.
+ * For example, the createSelectSql() method checks the type of a given column used in an
+ * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
+ * (i.e. if it's a text column type).
+ *
+ * @package propel.generator.propel.map
+ */
+class MediumTableMap extends TableMap
+{
+
+ /**
+ * The (dot-path) name of this class
+ */
+ const CLASS_NAME = 'propel.map.MediumTableMap';
+
+ /**
+ * Initialize the table attributes, columns and validators
+ * Relations are not initialized by this method since they are lazy loaded
+ *
+ * @return void
+ * @throws PropelException
+ */
+ public function initialize()
+ {
+ // attributes
+ $this->setName('medium');
+ $this->setPhpName('Medium');
+ $this->setClassname('Medium');
+ $this->setPackage('propel');
+ $this->setUseIdGenerator(true);
+ $this->setSingleTableInheritance(true);
+ // columns
+ $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
+ $this->addColumn('mod', 'Mod', 'INTEGER', true, null, null);
+ $this->addColumn('autor', 'Autor', 'VARCHAR', true, 100, null);
+ $this->addColumn('titel', 'Titel', 'VARCHAR', true, 100, null);
+ $this->addColumn('eigentumer', 'Eigentumer', 'VARCHAR', true, 100, null);
+ $this->addColumn('zz_bei', 'ZzBei', 'VARCHAR', true, 100, null);
+ $this->addColumn('kommentar', 'Kommentar', 'VARCHAR', true, 100, null);
+ $this->addColumn('class_key', 'ClassKey', 'INTEGER', true, null, null);
+ // validators
+ } // initialize()
+
+ /**
+ * Build the RelationMap objects for this table relationships
+ */
+ public function buildRelations()
+ {
+ } // buildRelations()
+
+} // MediumTableMap