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 TaxTableMap extends TableMap
22: {
23:
24: 25: 26:
27: const CLASS_NAME = 'Thelia.Model.map.TaxTableMap';
28:
29: 30: 31: 32: 33: 34: 35:
36: public function initialize()
37: {
38:
39: $this->setName('tax');
40: $this->setPhpName('Tax');
41: $this->setClassname('Thelia\\Model\\Tax');
42: $this->setPackage('Thelia.Model');
43: $this->setUseIdGenerator(true);
44:
45: $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
46: $this->addColumn('rate', 'Rate', 'FLOAT', 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('TaxRuleCountry', 'Thelia\\Model\\TaxRuleCountry', RelationMap::ONE_TO_MANY, array('id' => 'tax_id', ), 'SET NULL', 'RESTRICT', 'TaxRuleCountrys');
58: $this->addRelation('TaxI18n', 'Thelia\\Model\\TaxI18n', RelationMap::ONE_TO_MANY, array('id' => 'id', ), 'CASCADE', null, 'TaxI18ns');
59: }
60:
61: 62: 63: 64: 65: 66:
67: public function getBehaviors()
68: {
69: return array(
70: 'timestampable' => array (
71: 'create_column' => 'created_at',
72: 'update_column' => 'updated_at',
73: 'disable_updated_at' => 'false',
74: ),
75: 'i18n' => array (
76: 'i18n_table' => '%TABLE%_i18n',
77: 'i18n_phpname' => '%PHPNAME%I18n',
78: 'i18n_columns' => 'title, description',
79: 'i18n_pk_name' => NULL,
80: 'locale_column' => 'locale',
81: 'default_locale' => NULL,
82: 'locale_alias' => '',
83: ),
84: );
85: }
86:
87: }
88: