Blame view

common/models/Articles.php 173 Bytes
7ba4acc5   Administrator   after marge
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  
  namespace common\models;
  
  class Articles extends \yii\db\ActiveRecord
  {
      public static function tableName()
      {
          return 'articles';
      }
      
     
      
  }