mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-17 07:51:12 +08:00
23 lines
392 B
PHP
23 lines
392 B
PHP
<?php
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
/**
|
|
* Class TestTrigger.
|
|
*
|
|
* @property int $id
|
|
* @property string $stringcol
|
|
*/
|
|
class TestTrigger extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'test_trigger';
|
|
}
|
|
}
|