123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace app\models\entity;
- use Yii;
- /**
- * This is the model class for table "so_session_log".
- *
- * @property int $id
- * @property int $id_session
- * @property string $description
- */
- class SessionLog extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'so_session_log';
- }
- public static function getDb()
- {
- return \Yii::$app->slave_db;
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['description'], 'required'],
- [['id_session'], 'integer'],
- [['description'], 'string'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'id_session' => 'Id Session',
- 'description' => 'Description',
- ];
- }
- }
|