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