mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-14 01:35:35 +08:00
35 lines
576 B
PHP
35 lines
576 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['tbgift_product']=array (
|
||
'columns' =>
|
||
array (
|
||
'product_id'=>
|
||
array(
|
||
'type'=>'mediumint(8)',
|
||
),
|
||
'bn' =>
|
||
array (
|
||
'type' => 'varchar(200)',
|
||
|
||
),
|
||
'name' =>
|
||
array (
|
||
'type' => 'varchar(200)',
|
||
'required' => true,
|
||
'default' => '',
|
||
),
|
||
'goods_id'=>
|
||
array(
|
||
'type'=>'table:tbgift_goods',
|
||
),
|
||
),
|
||
'comment' => '捆绑商品',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
);
|
||
?>
|