mirror of
https://github.com/ulfgebhardt/system.git
synced 2025-12-13 09:35:49 +00:00
14 lines
272 B
PHP
14 lines
272 B
PHP
<?php
|
|
|
|
namespace DBD;
|
|
|
|
class UserTable {
|
|
|
|
const NAME = 'user';
|
|
|
|
const FIELD_ID = 'id';
|
|
const FIELD_USERNAME = 'username';
|
|
const FIELD_PASSWORD = 'password';
|
|
const FIELD_EMAIL = 'email';
|
|
const FIELD_CREATIONTIMESTAMP = 'creationTimestamp';
|
|
} |