mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-09 16:57:53 +01:00
17 lines
197 B
PHP
17 lines
197 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
class Item extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'tbl_item';
|
|
}
|
|
|
|
public static function relations()
|
|
{
|
|
return array(
|
|
);
|
|
}
|
|
} |