11 lines
171 B
PHP
11 lines
171 B
PHP
<?php
|
|
|
|
namespace SYSTEM\DBD;
|
|
|
|
class UserRightsTable {
|
|
|
|
const NAME = 'system_user_to_rights';
|
|
|
|
const FIELD_USERID = 'userID';
|
|
const FIELD_RIGHTID = 'rightID';
|
|
} |