* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Installer\Administrator\Table; use Joomla\CMS\Table\Table; use Joomla\Database\DatabaseDriver; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Downloadkey Table class. * * @since 4.0.0 */ class UpdatesiteTable extends Table { /** * Indicates that columns fully support the NULL value in the database * * @var boolean * * @since 4.1.1 */ protected $_supportNullValue = true; /** * Constructor * * @param DatabaseDriver $db Database connector object * * @since 4.0.0 */ public function __construct(DatabaseDriver $db) { $this->typeAlias = 'com_installer.downloadkey'; parent::__construct('#__update_sites', 'update_site_id', $db); } }