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

30 lines
796 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['order_sync_status'] = array(
'comment' => '订单同步状态表',
'columns' => array(
'order_id' => array(
'type' => 'table:orders@ome',
'pkey' => true,
),
'type' => array(
'type' => 'smallint',
'default' => '0',
'label' => '同步类型'
),
'sync_status' => array(
'type' => 'smallint',
'default' => '0',
'comment' => '0:未同步,1:同步失败,2:同步成功',
'label' => '同步状态'
),
),
'comment' => '订单同步状态表',
'engine' => 'innodb',
'version' => '$Rev: $'
);