54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace common\models;
|
|
|
|
use Yii;
|
|
|
|
/**
|
|
* This is the model class for table "property".
|
|
*
|
|
* @property integer $id
|
|
* @property integer $id_user
|
|
* @property integer $id_property_definition
|
|
* @property string $value
|
|
* @property string $created_at
|
|
* @property string $updated_at
|
|
*/
|
|
class Property extends \yii\db\ActiveRecord
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public static function tableName()
|
|
{
|
|
return 'property';
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
[['id_user', 'id_property_definition'], 'integer'],
|
|
[['created_at', 'updated_at'], 'safe'],
|
|
[['value'], 'string', 'max' => 255]
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function attributeLabels()
|
|
{
|
|
return [
|
|
'id' => 'ID',
|
|
'id_user' => 'Id User',
|
|
'id_property_definition' => 'Id Property Definition',
|
|
'value' => 'Value',
|
|
'created_at' => 'Created At',
|
|
'updated_at' => 'Updated At',
|
|
];
|
|
}
|
|
}
|