add published field alias

This commit is contained in:
Artem Vasilev 2024-03-12 01:40:25 +03:00
parent bdd62cac3c
commit 8bf4c1d9dc

View File

@ -56,5 +56,7 @@ class ClientTable extends Table
public function __construct(DatabaseDriver $db)
{
parent::__construct('#__webmasterskaya_oauthserver_clients', 'id', $db);
$this->setColumnAlias('published', 'active');
}
}