setName('nws_block'); $this->setPhpName('Block'); $this->setClassname('Trinity\\Bundle\\NewsletterBundle\\Model\\Block'); $this->setPackage('vendor.trinity.src.Trinity.Bundle.NewsletterBundle.Model'); $this->setUseIdGenerator(true); $this->setSingleTableInheritance(true); // columns $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null); $this->addColumn('name', 'Name', 'VARCHAR', true, 255, null); $this->addColumn('value', 'Value', 'LONGVARCHAR', false, null, null); $this->addColumn('class_key', 'ClassKey', 'VARCHAR', false, 255, null); $this->addColumn('template', 'Template', 'VARCHAR', false, 255, null); $this->addForeignKey('model_id', 'ModelId', 'INTEGER', 'nws_model', 'id', false, null, null); $this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null); $this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null); $this->addColumn('version', 'Version', 'INTEGER', false, null, 0); $this->addColumn('version_created_at', 'VersionCreatedAt', 'TIMESTAMP', false, null, null); $this->addColumn('version_created_by', 'VersionCreatedBy', 'VARCHAR', false, 100, null); // validators } // initialize() /** * Build the RelationMap objects for this table relationships */ public function buildRelations() { $this->addRelation('Model', 'Trinity\\Bundle\\NewsletterBundle\\Model\\Model', RelationMap::MANY_TO_ONE, array('model_id' => 'id', ), 'CASCADE', null); $this->addRelation('BlockVersion', 'Trinity\\Bundle\\NewsletterBundle\\Model\\BlockVersion', RelationMap::ONE_TO_MANY, array('id' => 'id', ), 'CASCADE', null, 'BlockVersions'); } // buildRelations() /** * * Gets the list of behaviors registered for this table * * @return array Associative array (name => parameters) of behaviors */ public function getBehaviors() { return array( 'timestampable' => array ( 'create_column' => 'created_at', 'update_column' => 'updated_at', 'disable_updated_at' => 'false', ), 'versionable' => array ( 'version_column' => 'version', 'version_table' => '', 'log_created_at' => 'true', 'log_created_by' => 'true', 'log_comment' => 'false', 'version_created_at_column' => 'version_created_at', 'version_created_by_column' => 'version_created_by', 'version_comment_column' => 'version_comment', ), 'event' => array ( ), 'extend' => array ( ), ); } // getBehaviors() } // BlockTableMap