Advertisement
Guest User

модель Blog

a guest
Apr 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. namespace app\models;
  4. use yii\db\ActiveRecord;
  5. use yii;
  6.  
  7.  
  8.  
  9. class Blog extends ActiveRecord{
  10.  
  11.     public static function tableName(){
  12.         return 'blog';
  13.     }
  14.  
  15.         public function getCategory(){
  16.         return $this->hasOne(Blog::className(), ['id' => 'id']);
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement