| Current Path : /var/www/html/maiwp/backend/models/ |
| Current File : /var/www/html/maiwp/backend/models/ReleaseThemesTranslation.php |
<?php
namespace backend\models;
use Yii;
/**
* This is the model class for table "release_themes_translation".
*
* @property int $themes_translation_id
* @property int|null $themes_translation_parent_id
* @property string|null $themes_translation_language
* @property string|null $themes_translation
*/
class ReleaseThemesTranslation extends \yii\db\ActiveRecord
{
/**
* {@inheritdoc}
*/
public static function tableName()
{
return 'directory_release_translation';
}
/**
* {@inheritdoc}
*/
public function rules()
{
return [
[['themes_translation_parent_id'], 'integer'],
[['themes_translation_language', 'themes_translation'], 'string', 'max' => 255],
];
}
/**
* {@inheritdoc}
*/
public function attributeLabels()
{
return [
'themes_translation_id' => 'Themes Translation ID',
'themes_translation_parent_id' => 'Themes Translation Parent ID',
'themes_translation_language' => 'Themes Translation Language',
'themes_translation' => 'Themes Translation',
];
}
}