<?php
namespace Your\Addon;
use XF\Mvc\Entity\Entity;
use XF\Mvc\Entity\Manager;
use XF\Mvc\Entity\Structure;
class Listener
{
public static function onEntityExtend(Manager $em, Structure &$structure)
{
$structure->columns['test'] = ['type' => Entity::UINT, 'default' => 0];
return $structure;
}
}