mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
47 lines
935 B
PHP
47 lines
935 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
$db['analysis']=array (
|
||
'columns' =>
|
||
array (
|
||
'id' =>
|
||
array (
|
||
'type' => 'number',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'extra' => 'auto_increment',
|
||
'editable' => false,
|
||
),
|
||
'service' =>
|
||
array (
|
||
'type' => 'varchar(100)',
|
||
'required' => true,
|
||
'comment' => '报表服务名',
|
||
),
|
||
'interval' =>
|
||
array (
|
||
'type' =>
|
||
array (
|
||
'hour' => 'hour',
|
||
'day' => 'day',
|
||
),
|
||
'required' => true,
|
||
'comment' => '间隔时间',
|
||
),
|
||
'modify' =>
|
||
array (
|
||
'type' => 'time',
|
||
'required' => true,
|
||
'default' => 0,
|
||
'comment' => '修改时间',
|
||
),
|
||
),
|
||
'comment' => '电商商务通用应用分析',
|
||
'engine' => 'innodb',
|
||
'ignore_cache' => true,
|
||
);
|