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';
|
|
} |