mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-16 23:48:16 +08:00
26 lines
508 B
PHP
26 lines
508 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;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $string_identifier
|
|
*/
|
|
class Alpha extends ActiveRecord
|
|
{
|
|
public static function tableName()
|
|
{
|
|
return 'alpha';
|
|
}
|
|
|
|
public function getBetas()
|
|
{
|
|
return $this->hasMany(Beta::className(), ['alpha_string_identifier' => 'string_identifier']);
|
|
}
|
|
}
|