Your IP : 216.73.216.79


Current Path : /var/www/html/dosm/backend/models/
Upload File :
Current File : /var/www/html/dosm/backend/models/Subscription.php

<?php

namespace backend\models;

use Yii;
/**
 * This is the model class for table "life_expectancy".
 *
 */
class Subscription extends \yii\db\ActiveRecord 
{
    /**
     * @inheritdoc
     */
    public static function tableName() {
        return 'subscription';
    }

    /**
     * @inheritdoc
     */

    public function rules()
    {
        return [
            [['email_address', 'first_name', 'last_name', 'organization'], 'required']
        ]; 
    }
    
    public function attributeLabels() 
    {
        return [
            'id' => Yii::t('app', 'ID'),
            'updated_at' => Yii::t('app', 'Updated At')
        ];
    }
}