mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
28 lines
568 B
PHP
28 lines
568 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$db['group_ops']=array (
|
||
'columns' =>
|
||
array (
|
||
'group_id' =>
|
||
array (
|
||
'type' => 'table:groups@ome',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
),
|
||
'op_id' =>
|
||
array (
|
||
'type' => 'table:account@pam',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'editable' => false,
|
||
),
|
||
),
|
||
'comment' => '小组成员表',
|
||
'engine' => 'innodb',
|
||
'version' => '$Rev: $',
|
||
); |