1234567891011121314151617181920212223 |
- <?php
- namespace app\models\entity;
- use yii\db\ActiveRecord;
- class Chat extends ActiveRecord
- {
- /**
- * @return string название таблицы, сопоставленной с этим ActiveRecord-классом.
- */
- public static function tableName()
- {
- return '{{chat}}';
- }
-
- /**
- * @return \yii\db\ActiveQuery
- */
- public function getAccounts()
- {
- return $this->hasOne(Accounts::class, ['id' => 'acc_id']);
- }
- }
|