fehlerupdate: added check for app (existing in database?), code layout

This commit is contained in:
Alexei Karpenko
2026-01-19 15:27:54 +01:00
parent cd03264ab4
commit 131ec86dee
4 changed files with 30 additions and 15 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
class App_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_app';
$this->pk = 'app';
}
}