mirror of
https://github.com/ulfgebhardt/system.git
synced 2025-12-13 09:35:49 +00:00
12 lines
220 B
PHP
12 lines
220 B
PHP
<?php
|
|
|
|
namespace SYSTEM\DBD;
|
|
|
|
class UserRightsTable {
|
|
|
|
const NAME_PG = 'system.user_to_rights';
|
|
const NAME_MYS = 'system_user_to_rights';
|
|
|
|
const FIELD_USERID = 'userID';
|
|
const FIELD_RIGHTID = 'rightID';
|
|
} |