Files
yii2/tests/data/ar/Alpha.php
2026-01-27 05:53:03 -03:00

27 lines
503 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::class, ['alpha_string_identifier' => 'string_identifier']);
}
}