1: <?php
2:
3: namespace Thelia\Model\map;
4:
5: use \RelationMap;
6: use \TableMap;
7:
8:
9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20:
21: class AttributeCombinationTableMap extends TableMap
22: {
23:
24: 25: 26:
27: const CLASS_NAME = 'Thelia.Model.map.AttributeCombinationTableMap';
28:
29: 30: 31: 32: 33: 34: 35:
36: public function initialize()
37: {
38:
39: $this->setName('attribute_combination');
40: $this->setPhpName('AttributeCombination');
41: $this->setClassname('Thelia\\Model\\AttributeCombination');
42: $this->setPackage('Thelia.Model');
43: $this->setUseIdGenerator(true);
44:
45: $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
46: $this->addForeignPrimaryKey('attribute_id', 'AttributeId', 'INTEGER' , 'attribute', 'id', true, null, null);
47: $this->addForeignPrimaryKey('combination_id', 'CombinationId', 'INTEGER' , 'combination', 'id', true, null, null);
48: $this->addForeignPrimaryKey('attribute_av_id', 'AttributeAvId', 'INTEGER' , 'attribute_av', 'id', true, null, null);
49: $this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
50: $this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
51:
52: }
53:
54: 55: 56:
57: public function buildRelations()
58: {
59: $this->addRelation('Attribute', 'Thelia\\Model\\Attribute', RelationMap::MANY_TO_ONE, array('attribute_id' => 'id', ), 'CASCADE', 'RESTRICT');
60: $this->addRelation('AttributeAv', 'Thelia\\Model\\AttributeAv', RelationMap::MANY_TO_ONE, array('attribute_av_id' => 'id', ), 'CASCADE', 'RESTRICT');
61: $this->addRelation('Combination', 'Thelia\\Model\\Combination', RelationMap::MANY_TO_ONE, array('combination_id' => 'id', ), 'CASCADE', 'RESTRICT');
62: }
63:
64: 65: 66: 67: 68: 69:
70: public function getBehaviors()
71: {
72: return array(
73: 'timestampable' => array (
74: 'create_column' => 'created_at',
75: 'update_column' => 'updated_at',
76: 'disable_updated_at' => 'false',
77: ),
78: );
79: }
80:
81: }
82: