Commit bb94410bfbdbbde62e8153324ce1b07ab38ffcc4
1 parent
fb3bff35
test
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
common/models/UserInfo.php
... | ... | @@ -67,7 +67,7 @@ class UserInfo extends \yii\db\ActiveRecord |
67 | 67 | [['prepayment'], 'number'], |
68 | 68 | |
69 | 69 | [['rank', 'location'], 'string', 'max' => 50], |
70 | - [['salary', 'job','firstname','lastname'], 'string', 'max' => 255], | |
70 | + [['salary', 'job'], 'string', 'max' => 255], | |
71 | 71 | [['busy', 'member'], 'boolean'], |
72 | 72 | ]; |
73 | 73 | } |
... | ... | @@ -97,8 +97,6 @@ class UserInfo extends \yii\db\ActiveRecord |
97 | 97 | 'prepayment' => Yii::t('app', 'Prepayment'), |
98 | 98 | 'about' => Yii::t('app', 'About'), |
99 | 99 | 'type' => Yii::t('app', 'Is Default'), |
100 | - 'firstname' => 'Имя', | |
101 | - 'lastname' => 'Фамилия', | |
102 | 100 | 'alt_location' => 'Город не в списке', |
103 | 101 | 'is_customer' => '', |
104 | 102 | 'is_freelancer' => '', | ... | ... |