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

46 lines
879 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['api_fail']=array (
'columns' =>
array (
'order_id' =>
array (
'type' => 'table:orders@ome',
'required' => true,
'default' => 0,
'editable' => false,
'label' => '订单ID',
),
'type' =>
array (
'type' =>
array (
'payment' => '支付',
'refund' => '退款',
),
'required' => true,
'default' => 'payment',
'label' => '请求类型'
),
),
'index' =>
array (
'ind_orderid_type' =>
array (
'columns' =>
array (
0 => 'order_id',
1 => 'type'
),
'prefix' => 'unique',
),
),
'comment' => '请求失败记录',
'engine' => 'innodb',
'version' => '$Rev: 44513 $',
);