Overview

Namespaces

  • Thelia
    • Action
    • Controller
    • Core
      • Bundle
      • Event
      • EventListener
      • Template
        • BaseParam
    • Exception
    • Log
      • Destination
    • Model
      • map
      • om
    • Routing
      • Matcher
    • Tools
    • Tpex
      • BaseParam
      • Exception
      • Loop
      • Tests

Classes

  • AccessoryTableMap
  • AddressTableMap
  • AdminGroupTableMap
  • AdminLogTableMap
  • AdminTableMap
  • AreaTableMap
  • AttributeAvDescTableMap
  • AttributeAvI18nTableMap
  • AttributeAvTableMap
  • AttributeCategoryTableMap
  • AttributeCombinationTableMap
  • AttributeDescTableMap
  • AttributeI18nTableMap
  • AttributeTableMap
  • CategoryDescTableMap
  • CategoryI18nTableMap
  • CategoryTableMap
  • CategoryVersionTableMap
  • CombinationTableMap
  • ConfigDescTableMap
  • ConfigI18nTableMap
  • ConfigTableMap
  • ContentAssocTableMap
  • ContentDescTableMap
  • ContentFolderTableMap
  • ContentI18nTableMap
  • ContentTableMap
  • ContentVersionTableMap
  • CountryDescTableMap
  • CountryI18nTableMap
  • CountryTableMap
  • CouponOrderTableMap
  • CouponRuleTableMap
  • CouponTableMap
  • CurrencyTableMap
  • CustomerTableMap
  • CustomerTitleDescTableMap
  • CustomerTitleI18nTableMap
  • CustomerTitleTableMap
  • DelivzoneTableMap
  • DocumentDescTableMap
  • DocumentI18nTableMap
  • DocumentTableMap
  • FeatureAvDescTableMap
  • FeatureAvI18nTableMap
  • FeatureAvTableMap
  • FeatureCategoryTableMap
  • FeatureDescTableMap
  • FeatureI18nTableMap
  • FeatureProdTableMap
  • FeatureTableMap
  • FolderDescTableMap
  • FolderI18nTableMap
  • FolderTableMap
  • FolderVersionTableMap
  • GroupDescTableMap
  • GroupI18nTableMap
  • GroupModuleTableMap
  • GroupResourceTableMap
  • GroupTableMap
  • ImageDescTableMap
  • ImageI18nTableMap
  • ImageTableMap
  • LangTableMap
  • MessageDescTableMap
  • MessageI18nTableMap
  • MessageTableMap
  • MessageVersionTableMap
  • ModuleDescTableMap
  • ModuleI18nTableMap
  • ModuleTableMap
  • OrderAddressTableMap
  • OrderFeatureTableMap
  • OrderProductTableMap
  • OrderStatusDescTableMap
  • OrderStatusI18nTableMap
  • OrderStatusTableMap
  • OrderTableMap
  • ProductCategoryTableMap
  • ProductDescTableMap
  • ProductI18nTableMap
  • ProductTableMap
  • ProductVersionTableMap
  • ResourceDescTableMap
  • ResourceI18nTableMap
  • ResourceTableMap
  • RewritingTableMap
  • StockTableMap
  • TaxDescTableMap
  • TaxI18nTableMap
  • TaxRuleCountryTableMap
  • TaxRuleDescTableMap
  • TaxRuleI18nTableMap
  • TaxRuleTableMap
  • TaxTableMap
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace Thelia\Model\map;
 4: 
 5: use \RelationMap;
 6: use \TableMap;
 7: 
 8: 
 9: /**
10:  * This class defines the structure of the 'message_version' table.
11:  *
12:  *
13:  *
14:  * This map class is used by Propel to do runtime db structure discovery.
15:  * For example, the createSelectSql() method checks the type of a given column used in an
16:  * ORDER BY clause to know whether it needs to apply SQL to make the ORDER BY case-insensitive
17:  * (i.e. if it's a text column type).
18:  *
19:  * @package    propel.generator.Thelia.Model.map
20:  */
21: class MessageVersionTableMap extends TableMap
22: {
23: 
24:     /**
25:      * The (dot-path) name of this class
26:      */
27:     const CLASS_NAME = 'Thelia.Model.map.MessageVersionTableMap';
28: 
29:     /**
30:      * Initialize the table attributes, columns and validators
31:      * Relations are not initialized by this method since they are lazy loaded
32:      *
33:      * @return void
34:      * @throws PropelException
35:      */
36:     public function initialize()
37:     {
38:         // attributes
39:         $this->setName('message_version');
40:         $this->setPhpName('MessageVersion');
41:         $this->setClassname('Thelia\\Model\\MessageVersion');
42:         $this->setPackage('Thelia.Model');
43:         $this->setUseIdGenerator(false);
44:         // columns
45:         $this->addForeignPrimaryKey('id', 'Id', 'INTEGER' , 'message', 'id', true, null, null);
46:         $this->addColumn('code', 'Code', 'VARCHAR', true, 45, null);
47:         $this->addColumn('secured', 'Secured', 'TINYINT', false, null, null);
48:         $this->addColumn('ref', 'Ref', 'VARCHAR', false, 255, null);
49:         $this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
50:         $this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
51:         $this->addPrimaryKey('version', 'Version', 'INTEGER', true, null, 0);
52:         $this->addColumn('version_created_at', 'VersionCreatedAt', 'TIMESTAMP', false, null, null);
53:         $this->addColumn('version_created_by', 'VersionCreatedBy', 'VARCHAR', false, 100, null);
54:         // validators
55:     } // initialize()
56: 
57:     /**
58:      * Build the RelationMap objects for this table relationships
59:      */
60:     public function buildRelations()
61:     {
62:         $this->addRelation('Message', 'Thelia\\Model\\Message', RelationMap::MANY_TO_ONE, array('id' => 'id', ), 'CASCADE', null);
63:     } // buildRelations()
64: 
65: } // MessageVersionTableMap
66: 
thelia API documentation generated by ApiGen 2.8.0