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

67 lines
1.5 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['shop_props']=array (
'columns' =>
array (
'id' => array(
'type' => 'int unsigned',
'required' => true,
'pkey' => true,
'extra' => 'auto_increment',
'editable' => false,
),
'shop_id' =>
array (
'type' => 'varchar(32)',
),
'props_col'=>array(
'type' => 'varchar(50)',
'editable' => false,
'label' => '键名',
),
'props_value'=>array(
'type' => 'varchar(200)',
'editable' => false,
'label' => '值',
),
'at_time' => array(
'type' => 'TIMESTAMP',
'label' => '创建时间',
'default_in_list' => true,
'in_list' => true,
'filtertype' => 'time',
'filterdefault' => true,
'default' => 'CURRENT_TIMESTAMP',
'order' => 100,
),
'up_time' => array(
'type' => 'TIMESTAMP',
'label' => '更新时间',
'default_in_list' => true,
'in_list' => true,
'filtertype' => 'time',
'filterdefault' => true,
'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP',
'order' => 110,
),
),
'index' =>
array (
),
'comment' => '店铺自定义表',
'engine' => 'innodb',
'version' => '$Rev: $',
);