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

36 lines
817 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['meta_value_text']=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' => 'text NOT NULL',
'required' => true,
'comment' => app::get('dbeav')->_('meta值'),
),
),
'comment' => app::get('dbeav')->_('meta系统text类型存值表'),
'engine' => 'innodb',
'version' => '$Rev: 40912 $',
);