Remove model base class

This commit is contained in:
Frederic Guillot
2016-05-28 18:19:15 -04:00
parent e6235afb2d
commit 936376ffe7
60 changed files with 113 additions and 53 deletions

View File

@@ -2,6 +2,8 @@
namespace Kanboard\Model;
use Kanboard\Core\Base;
/**
* Column Model
*
@@ -140,7 +142,7 @@ class Column extends Base
'description' => $description,
);
return $this->persist(self::TABLE, $values);
return $this->db->table(self::TABLE)->persist($values);
}
/**