23 lines
371 B
PHP
23 lines
371 B
PHP
|
<?php
|
||
|
|
||
|
namespace backend\models;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
class IntegrationSetting extends \yii\db\ActiveRecord
|
||
|
{
|
||
|
public static function tableName()
|
||
|
{
|
||
|
return '{{%integration_settings}}';
|
||
|
}
|
||
|
|
||
|
public function rules()
|
||
|
{
|
||
|
return [
|
||
|
['name', 'required'],
|
||
|
['name', 'string', 'max' => 255],
|
||
|
['value', 'string'],
|
||
|
];
|
||
|
}
|
||
|
}
|