Files
kanboard/app/Model/TaskMetadataModel.php
T

36 lines
536 B
PHP
Raw Normal View History

2026-06-01 21:23:12 -07:00
<?php
namespace Kanboard\Model;
/**
* Task Metadata
*
* @package Kanboard\Model
* @author Frederic Guillot
*/
class TaskMetadataModel extends MetadataModel
{
/**
* Get the table
*
* @abstract
* @access protected
* @return string
*/
protected function getTable()
{
return 'task_has_metadata';
}
/**
* Define the entity key
*
* @access protected
* @return string
*/
protected function getEntityKey()
{
return 'task_id';
}
}