mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
46 lines
975 B
PHP
46 lines
975 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
$db['meta_value_decimal']=array (
|
||
'columns' =>
|
||
array (
|
||
'mr_id' =>
|
||
array (
|
||
'type' => 'number',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'comment' => app::get('dbeav')->_('关联表的id id'),
|
||
),
|
||
'pk' =>
|
||
array (
|
||
'type' => 'number',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'comment' => app::get('dbeav')->_('查询结果集定位基准'),
|
||
),
|
||
'value' =>
|
||
array (
|
||
'type' => 'decimal(12,4) NOT NULL default \'0.0000\'',
|
||
'required' => true,
|
||
'comment' => app::get('dbeav')->_('meta值'),
|
||
),
|
||
),
|
||
'comment' => app::get('dbeav')->_('meta系统decimal类型'),
|
||
'index' =>
|
||
array (
|
||
'ind_value' =>
|
||
array (
|
||
'columns' =>
|
||
array (
|
||
0 => 'value',
|
||
),
|
||
),
|
||
),
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: 40912 $',
|
||
);
|