CommentsPull.php 277 B

12345678910111213141516171819
  1. <?php
  2. namespace app\models\base;
  3. use yii\db\ActiveRecord;
  4. class CommentsPull extends ActiveRecord
  5. {
  6. public static function getDb()
  7. {
  8. return \Yii::$app->old_db;
  9. }
  10. public static function tableName()
  11. {
  12. return "{{%comment_pulls}}";
  13. }
  14. }