mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
30 lines
573 B
PHP
30 lines
573 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
$db['hasrole']=array (
|
||
'columns' =>
|
||
array (
|
||
'user_id' =>
|
||
array (
|
||
'type' => 'table:users',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'comment'=> '后台用户ID',
|
||
),
|
||
'role_id' =>
|
||
array (
|
||
'type' => 'table:roles',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'comment' => '角色ID',
|
||
),
|
||
),
|
||
'comment' => '后台权限角色和用户关联表',
|
||
'version' => '$Rev: 40654 $',
|
||
);
|
||
|