mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
21 lines
521 B
PHP
21 lines
521 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['order_outstorage']=array(
|
||
'columns' => array(
|
||
'order_id' => array(
|
||
'type' => 'table:orders@ome',
|
||
'required' => true,
|
||
'default' => 0,
|
||
'editable' => false,
|
||
'pkey' => true,
|
||
'comment' => '订单号',
|
||
),
|
||
),
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: 40912 $',
|
||
'comment' => '出库失败表',
|
||
); |