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 AdminTableMap extends TableMap
22: {
23:
24: 25: 26:
27: const CLASS_NAME = 'Thelia.Model.map.AdminTableMap';
28:
29: 30: 31: 32: 33: 34: 35:
36: public function initialize()
37: {
38:
39: $this->setName('admin');
40: $this->setPhpName('Admin');
41: $this->setClassname('Thelia\\Model\\Admin');
42: $this->setPackage('Thelia.Model');
43: $this->setUseIdGenerator(true);
44:
45: $this->addPrimaryKey('id', 'Id', 'INTEGER', true, null, null);
46: $this->addColumn('firstname', 'Firstname', 'VARCHAR', true, 100, null);
47: $this->addColumn('lastname', 'Lastname', 'VARCHAR', true, 100, null);
48: $this->addColumn('login', 'Login', 'VARCHAR', true, 100, null);
49: $this->addColumn('password', 'Password', 'VARCHAR', true, 128, null);
50: $this->addColumn('algo', 'Algo', 'VARCHAR', false, 128, null);
51: $this->addColumn('salt', 'Salt', 'VARCHAR', false, 128, null);
52: $this->addColumn('created_at', 'CreatedAt', 'TIMESTAMP', false, null, null);
53: $this->addColumn('updated_at', 'UpdatedAt', 'TIMESTAMP', false, null, null);
54:
55: }
56:
57: 58: 59:
60: public function buildRelations()
61: {
62: $this->addRelation('AdminGroup', 'Thelia\\Model\\AdminGroup', RelationMap::ONE_TO_MANY, array('id' => 'admin_id', ), 'CASCADE', 'RESTRICT', 'AdminGroups');
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: );
80: }
81:
82: }
83: