Forbidden.php 1.08 KB
<?php

namespace app\models;

use Yii;

/**
 * This is the model class for table "{{%forbidden}}".
 *
 * @property integer $id
 * @property integer $room_id
 * @property integer $uid
 * @property string $name
 * @property integer $status
 */
class Forbidden extends \yii\db\ActiveRecord
{
    /**
     * @inheritdoc
     */
    public static function tableName()
    {
        return '{{%forbidden}}';
    }

    /**
     * @inheritdoc
     */
    public function rules()
    {
        return [
            [['room_id', 'uid', 'status', 'create_time'], 'integer'],
            [['name'], 'string', 'max' => 50],
            [['room_id', 'uid'], 'unique', 'targetAttribute' => ['room_id', 'uid'], 'message' => 'The combination of Room ID and Uid has already been taken.'],
        ];
    }

    /**
     * @inheritdoc
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'room_id' => 'Room ID',
            'uid' => 'Uid',
            'name' => 'Name',
            'status' => 'Status',
            'create_time' => 'Create Time',
        ];
    }
}