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 ContentFolderTableMap extends TableMap
22: {
23:
24: 25: 26:
27: const CLASS_NAME = 'Thelia.Model.map.ContentFolderTableMap';
28:
29: 30: 31: 32: 33: 34: 35:
36: public function initialize()
37: {
38:
39: $this->setName('content_folder');
40: $this->setPhpName('ContentFolder');
41: $this->setClassname('Thelia\\Model\\ContentFolder');
42: $this->setPackage('Thelia.Model');
43: $this->setUseIdGenerator(false);
44:
45: $this->addForeignPrimaryKey('CONTENT_ID', 'ContentId', 'INTEGER' , 'content', 'ID', true, null, null);
46: $this->addForeignPrimaryKey('FOLDER_ID', 'FolderId', 'INTEGER' , 'folder', 'ID', true, null, null);
47: $this->addColumn('CREATED_AT', 'CreatedAt', 'TIMESTAMP', false, null, null);
48: $this->addColumn('UPDATED_AT', 'UpdatedAt', 'TIMESTAMP', false, null, null);
49:
50: }
51:
52: 53: 54:
55: public function buildRelations()
56: {
57: $this->addRelation('Content', 'Thelia\\Model\\Content', RelationMap::MANY_TO_ONE, array('content_id' => 'id', ), 'CASCADE', 'RESTRICT');
58: $this->addRelation('Folder', 'Thelia\\Model\\Folder', RelationMap::MANY_TO_ONE, array('folder_id' => 'id', ), 'CASCADE', 'RESTRICT');
59: }
60:
61: 62: 63: 64: 65: 66:
67: public function getBehaviors()
68: {
69: return array(
70: 'timestampable' => array('create_column' => 'created_at', 'update_column' => 'updated_at', 'disable_updated_at' => 'false', ),
71: );
72: }
73:
74: }
75: