Your IP : 216.73.216.79


Current Path : /var/www/html/drsa/backend/modules/appStatistics/models/
Upload File :
Current File : /var/www/html/drsa/backend/modules/appStatistics/models/ModuleAppStatisticsSeries.php

<?php

namespace backend\modules\appStatistics\models;

use Yii;

/**
 * This is the model class for table "module_app_statistics_series".
 *
 * @property int $id
 * @property string $title
 * @property string $color
 * @property int $id_statistics
 * @property string $created_at
 * @property string $created_by
 * @property string $updated_at
 * @property string $updated_by
 */
class ModuleAppStatisticsSeries extends \yii\db\ActiveRecord {

    /**
     * {@inheritdoc}
     */
    public static function tableName() {
        return 'module_app_statistics_series';
    }

    /**
     * {@inheritdoc}
     */
    public function rules() {
        return [
            [['color', 'title',], 'required'],
            [['id_statistics', 'created_at', 'created_by', 'updated_at', 'updated_by'], 'safe'],
        ];
    }

    /**
     * {@inheritdoc}
     */
    public function attributeLabels() {
        return [
            'id' => 'ID',
            'title' => 'Title',
            'color' => 'Color',
            'id_statistics' => 'Id Statistics',
            'created_at' => 'Created At',
            'created_by' => 'Created By',
            'updated_at' => 'Updated At',
            'updated_by' => 'Updated By',
        ];
    }

}