mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-04 14:34:49 +01:00
17 lines
268 B
PHP
17 lines
268 B
PHP
<?php
|
|
|
|
namespace yiiunit\data\ar;
|
|
|
|
/**
|
|
* @property integer $id
|
|
* @property string $title
|
|
* @property string $content
|
|
* @property integer $version
|
|
*/
|
|
class Document extends ActiveRecord
|
|
{
|
|
public function optimisticLock()
|
|
{
|
|
return 'version';
|
|
}
|
|
} |