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