mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
32 lines
677 B
PHP
32 lines
677 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['adapter']=array (
|
||
'comment' => '渠道适配器关系表',
|
||
'columns' =>
|
||
array (
|
||
'channel_id' =>
|
||
array (
|
||
'type' => 'varchar(32)',
|
||
'label' => '渠道ID',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
),
|
||
'adapter' =>
|
||
array (
|
||
'type' => 'varchar(32)',
|
||
'label' => '渠道适配器',
|
||
),
|
||
'config' =>
|
||
array (
|
||
'type' => 'longtext',
|
||
'label'=> '应用及参数配置',
|
||
),
|
||
),
|
||
'comment' => '渠道适配器关系表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |