mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
27 lines
538 B
PHP
27 lines
538 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
$db['role_flow']=array (
|
||
'columns' =>
|
||
array (
|
||
'role_id' => array (
|
||
'type' => 'table:roles',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'comment' => '角色id',
|
||
),
|
||
'flow_id' => array (
|
||
'type' => 'table:flow',
|
||
'required' => true,
|
||
'pkey' => true,
|
||
'comment' => '信息id',
|
||
),
|
||
),
|
||
'comment' => '角色和信息关联表',
|
||
'version' => '$Rev$',
|
||
);
|