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

47 lines
899 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['tbjz_orders']=array (
'columns' =>
array (
'order_id' =>
array (
'type' => 'int unsigned',
'required' => true,
'default' => 0,
'editable' => false,
),
'cid' =>
array (
'type' => 'varchar(50)',
'required' => true,
'default' => 0,
'editable' => false,
),
'oid' =>
array (
'type' => 'varchar(50)',
'default' => 0,
'editable' => false,
'label' => '子订单号',
),
),
'index' =>
array (
'ind_orderid_type' =>
array (
'columns' =>
array (
0 => 'order_id',
),
'prefix' => 'unique',
),
),
'comment' => '淘宝家装订单附加信息表',
'engine' => 'innodb',
'version' => '$Rev: $',
);