11 lines
316 B
PHP
11 lines
316 B
PHP
<?php
|
|
namespace SYSTEM\SQL;
|
|
|
|
class system_todo_assign {
|
|
const NAME_PG = 'system.todo_assign';
|
|
const NAME_MYS = 'system_todo_assign';
|
|
|
|
const FIELD_TODO = 'todo';
|
|
const FIELD_USER = 'user';
|
|
const FIELD_TIME = 'time';
|
|
} |