This commit is contained in:
commie
2026-02-27 13:53:53 +08:00
parent c9c8a120ab
commit d75fea32f7
25 changed files with 847 additions and 359 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
namespace app\model\Openim;
use think\Model;
/**
* @property string $key
* @property string $value
*/
class DataVersion extends \app\model\Base
{
protected $table = 'data_version';
protected $schema = [
'key' => 'string',
'value' => 'string',
];
protected function getOptions(): array{
return array_merge(parent::getOptions(),[
'connection' => 'immongodb',
]);
}
}