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

77 lines
2.1 KiB
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_objects_extend']=array(
'columns' => array(
'obj_id' => array(
'type' => 'table:order_objects@ome',
'required' => true,
'default' => '0',
'editable' => false,
'pkey' => true,
'comment' => '订单obj_id',
),
'order_id' =>
array (
'type' => 'table:orders@ome',
'required' => true,
'default' => '0',
'editable' => false,
),
'store_dly_type' => array(
'type' => 'tinyint(1)',
'default' => '0',
'comment' => '门店发货模式',
'editable' => false,
),
'store_bn' => array(
'type' => 'varchar(20)',
'comment' => '门店编码',
'editable' => false,
),
'customization' => array(
'type' => 'longtext',
'editable' => false,
'label' => '定制信息',
'comment' => '商品定制信息,格式:json',
),
'at_time' => array(
'type' => 'TIMESTAMP',
'label' => '创建时间',
'default' => 'CURRENT_TIMESTAMP',
'width' => 135,
'filtertype' => 'time',
'filterdefault' => true,
'in_list' => true,
'default_in_list' => true,
),
'up_time' => array(
'type' => 'TIMESTAMP',
'label' => '更新时间',
'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
'width' => 135,
'filtertype' => 'time',
'filterdefault' => true,
'in_list' => true,
'default_in_list' => true,
),
),
'index' => array(
'ind_at_time' => array(
'columns' => array(
0 => 'at_time',
),
),
'ind_up_time' => array(
'columns' => array(
0 => 'up_time',
),
),
),
'engine' => 'innodb',
'version' => '$Rev: 40912 $',
'comment' => '订单Objects扩展表',
);