12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace common\modules\user\models;
- /**
- * This is the model class for table "{{%auth}}".
- *
- * @property int $id
- * @property int $user_id
- * @property string $source
- * @property string $source_id
- * @property User $user
- */
- class Auth extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%auth}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['user_id', 'source', 'source_id'], 'required'],
- [['user_id'], 'integer'],
- [['source', 'source_id'], 'string', 'max' => 255],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'user_id' => 'User ID',
- 'source' => 'Source',
- 'source_id' => 'Source ID',
- ];
- }
- public function getUser()
- {
- return $this->hasOne(User::className(), ['id' => 'user_id']);
- }
- }
|