- 新增 ChangeLogLogic 和 ChangeLog 模型用于记录数据变更日志 - 引入 third-party 包 chance-fyi/operation-log 实现日志记录功能 - 在 composer.json 和 config/thinkorm.php 中添加相关配置
10 lines
154 B
PHP
10 lines
154 B
PHP
<?php
|
|
|
|
return [
|
|
'database1' => [
|
|
'table1' => 'app\\model\\Table1',
|
|
'table2' => 'app\\model\\Table2',
|
|
],
|
|
'database2' => [],
|
|
];
|