deblan.tv/vendor/trinity/src/Trinity/Bundle/NewsletterBundle/Model/map/NewsletterRecipientsTableMap.php
2015-03-02 21:57:49 +01:00

77 lines
2.5 KiB
PHP

<?php
namespace Trinity\Bundle\NewsletterBundle\Model\map;
use \RelationMap;
use \TableMap;
/**
* This class defines the structure of the 'nws_newsletter_recipients' 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.vendor.trinity.src.Trinity.Bundle.NewsletterBundle.Model.map
*/
class NewsletterRecipientsTableMap extends TableMap
{
/**
* The (dot-path) name of this class
*/
const CLASS_NAME = 'vendor.trinity.src.Trinity.Bundle.NewsletterBundle.Model.map.NewsletterRecipientsTableMap';
/**
* 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('nws_newsletter_recipients');
$this->setPhpName('NewsletterRecipients');
$this->setClassname('Trinity\\Bundle\\NewsletterBundle\\Model\\NewsletterRecipients');
$this->setPackage('vendor.trinity.src.Trinity.Bundle.NewsletterBundle.Model');
$this->setUseIdGenerator(false);
$this->setIsCrossRef(true);
// columns
$this->addForeignPrimaryKey('nws_newsletter_id', 'NwsNewsletterId', 'INTEGER' , 'nws_newsletter', 'id', true, null, null);
$this->addForeignPrimaryKey('fos_group_id', 'FosGroupId', 'INTEGER' , 'fos_group', 'id', true, null, null);
// validators
} // initialize()
/**
* Build the RelationMap objects for this table relationships
*/
public function buildRelations()
{
$this->addRelation('Newsletter', 'Trinity\\Bundle\\NewsletterBundle\\Model\\Newsletter', RelationMap::MANY_TO_ONE, array('nws_newsletter_id' => 'id', ), null, null);
$this->addRelation('Group', 'FOS\\UserBundle\\Propel\\Group', RelationMap::MANY_TO_ONE, array('fos_group_id' => 'id', ), null, null);
} // buildRelations()
/**
*
* Gets the list of behaviors registered for this table
*
* @return array Associative array (name => parameters) of behaviors
*/
public function getBehaviors()
{
return array(
'event' => array (
),
'extend' => array (
),
);
} // getBehaviors()
} // NewsletterRecipientsTableMap