1234567891011121314151617 |
- <?php
- namespace app\models\entity;
- use yii\db\ActiveRecord;
- class UserPositions extends ActiveRecord
- {
-
- /**
- * @return string название таблицы, сопоставленной с этим ActiveRecord-классом.
- */
- public static function tableName()
- {
- return '{{user_positions}}';
- }
- }
- ?>
|