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