1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Model/UserMetadata.php
2015-10-26 14:58:06 +01:00

30 lines
430 B
PHP

<?php
namespace Kanboard\Model;
/**
* User Metadata
*
* @package model
* @author Frederic Guillot
*/
class UserMetadata extends Metadata
{
/**
* SQL table name
*
* @var string
*/
const TABLE = 'user_has_metadata';
/**
* Define the entity key
*
* @access protected
* @return string
*/
protected function getEntityKey()
{
return 'user_id';
}
}