1
0
Fork 0
mirror of https://github.com/janickiy/yii2-nomer synced 2025-02-12 10:01:52 +00:00
yii2-nomer/models/NotificationResult.php
2020-02-05 06:34:26 +03:00

45 lines
703 B
PHP

<?php
namespace app\models;
use Yii;
/**
* This is the model class for table "notification_results".
*
* @property integer $id
* @property int notify_id
* @property int user_id
* @property int status
*
*/
class NotificationResult extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'notification_results';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['notify_id', 'user_id', 'status'], 'integer']
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
];
}
}