Your IP : 216.73.216.79


Current Path : /var/www/html/akept/backend/modules/moduleRepository/models/
Upload File :
Current File : /var/www/html/akept/backend/modules/moduleRepository/models/SolutionDownload.php

<?php

namespace backend\modules\moduleRepository\models;

use Yii;

/**
 * This is the model class for table "repo_solution_download".
 *
 * @property int $download_id
 * @property int|null $version_id
 * @property string|null $download_at
 */
class SolutionDownload extends \yii\db\ActiveRecord {

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

    /**
     * {@inheritdoc}
     */
    public function rules() {
        return [
            [['version_id'], 'integer'],
            [['download_at'], 'safe'],
        ];
    }

    /**
     * {@inheritdoc}
     */
    public function attributeLabels() {
        return [
            'download_id' => Yii::t('app', 'Download ID'),
            'version_id' => Yii::t('app', 'Version ID'),
            'download_at' => Yii::t('app', 'Download At'),
        ];
    }

}