mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
17 lines
509 B
PHP
17 lines
509 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
$db['log'] = array(
|
||
'columns'=>array(
|
||
'event_id'=>array('type'=>'number','pkey'=>true,'extra' => 'auto_increment',),
|
||
'event_time'=>array('type'=>'varchar(50)','comment'=>'时间'),
|
||
'event_data'=>array('type'=>'varchar(500)','comment'=>'数据'),
|
||
'event_type'=>array('type'=>'text','comment'=>'类型'),
|
||
),
|
||
'comment'=>'授权日志',
|
||
);
|