UserPositions.php 346 B

1234567891011121314151617
  1. <?php
  2. namespace app\models\entity;
  3. use yii\db\ActiveRecord;
  4. class UserPositions extends ActiveRecord
  5. {
  6. /**
  7. * @return string название таблицы, сопоставленной с этим ActiveRecord-классом.
  8. */
  9. public static function tableName()
  10. {
  11. return '{{user_positions}}';
  12. }
  13. }
  14. ?>