mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
35 lines
536 B
PHP
35 lines
536 B
PHP
<?php
|
|
|
|
namespace Kanboard\Model;
|
|
|
|
/**
|
|
* User Metadata
|
|
*
|
|
* @package Kanboard\Model
|
|
* @author Frederic Guillot
|
|
*/
|
|
class UserMetadataModel extends MetadataModel
|
|
{
|
|
/**
|
|
* Get the table
|
|
*
|
|
* @abstract
|
|
* @access protected
|
|
* @return string
|
|
*/
|
|
protected function getTable()
|
|
{
|
|
return 'user_has_metadata';
|
|
}
|
|
|
|
/**
|
|
* Define the entity key
|
|
*
|
|
* @access protected
|
|
* @return string
|
|
*/
|
|
protected function getEntityKey()
|
|
{
|
|
return 'user_id';
|
|
}
|
|
}
|