Files
OMS/app/eccommon/dbschema/analysis.php
2025-12-28 23:13:25 +08:00

47 lines
935 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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,
);