Kanboard-Prod/app/Model/UserMetadata.php

30 lines
429 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';
}
}