mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
28 lines
588 B
PHP
28 lines
588 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['shop_groups']=array (
|
||
'columns' =>
|
||
array (
|
||
'shop_id' =>
|
||
array (
|
||
'type' => 'table:shop@ome',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
),
|
||
'group_id' =>
|
||
array (
|
||
'type' => 'table:groups@ome',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
),
|
||
),
|
||
'comment' => '管理员组与店铺绑定关系表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |