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 LangTableMap extends TableMap
22: {
23:
24: 25: 26:
27: const CLASS_NAME = 'Thelia.Model.map.LangTableMap';
28:
29: 30: 31: 32: 33: 34: 35:
36: public function initialize()
37: {
38:
39: $this->setName('lang');
40: $this->setPhpName('Lang');
41: $this->setClassname('Thelia\\Model\\Lang');
42: $this->setPackage('Thelia.Model');
43: $this->setUseIdGenerator(true);
44:
45: $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
46: $this->addColumn('title', 'Title', 'VARCHAR', false, 100, null);
47: $this->addColumn('code', 'Code', 'VARCHAR', false, 10, null);
48: $this->addColumn('locale', 'Locale', 'VARCHAR', false, 45, null);
49: $this->addColumn('url', 'Url', 'VARCHAR', false, 255, null);
50: $this->addColumn('by_default', 'ByDefault', 'TINYINT', false, null, null);
51: $this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
52: $this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
53:
54: }
55:
56: 57: 58:
59: public function buildRelations()
60: {
61: }
62:
63: 64: 65: 66: 67: 68:
69: public function getBehaviors()
70: {
71: return array(
72: 'timestampable' => array (
73: 'create_column' => 'created_at',
74: 'update_column' => 'updated_at',
75: 'disable_updated_at' => 'false',
76: ),
77: );
78: }
79:
80: }
81: