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 CountryTableMap extends TableMap
22: {
23:
24: 25: 26:
27: const CLASS_NAME = 'Thelia.Model.map.CountryTableMap';
28:
29: 30: 31: 32: 33: 34: 35:
36: public function initialize()
37: {
38:
39: $this->setName('country');
40: $this->setPhpName('Country');
41: $this->setClassname('Thelia\\Model\\Country');
42: $this->setPackage('Thelia.Model');
43: $this->setUseIdGenerator(false);
44:
45: $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
46: $this->addForeignKey('area_id', 'AreaId', 'INTEGER', 'area', 'id', false, null, null);
47: $this->addColumn('isocode', 'Isocode', 'VARCHAR', true, 4, null);
48: $this->addColumn('isoalpha2', 'Isoalpha2', 'VARCHAR', false, 2, null);
49: $this->addColumn('isoalpha3', 'Isoalpha3', 'VARCHAR', false, 4, null);
50: $this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
51: $this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
52:
53: }
54:
55: 56: 57:
58: public function buildRelations()
59: {
60: $this->addRelation('Area', 'Thelia\\Model\\Area', RelationMap::MANY_TO_ONE, array('area_id' => 'id', ), 'SET NULL', 'RESTRICT');
61: $this->addRelation('TaxRuleCountry', 'Thelia\\Model\\TaxRuleCountry', RelationMap::ONE_TO_MANY, array('id' => 'country_id', ), 'CASCADE', 'RESTRICT', 'TaxRuleCountrys');
62: $this->addRelation('CountryI18n', 'Thelia\\Model\\CountryI18n', RelationMap::ONE_TO_MANY, array('id' => 'id', ), 'CASCADE', null, 'CountryI18ns');
63: }
64:
65: 66: 67: 68: 69: 70:
71: public function getBehaviors()
72: {
73: return array(
74: 'timestampable' => array (
75: 'create_column' => 'created_at',
76: 'update_column' => 'updated_at',
77: 'disable_updated_at' => 'false',
78: ),
79: 'i18n' => array (
80: 'i18n_table' => '%TABLE%_i18n',
81: 'i18n_phpname' => '%PHPNAME%I18n',
82: 'i18n_columns' => 'title, description, chapo, postscriptum',
83: 'i18n_pk_name' => NULL,
84: 'locale_column' => 'locale',
85: 'default_locale' => NULL,
86: 'locale_alias' => '',
87: ),
88: );
89: }
90:
91: }
92: