Move public.phrase to system.phrase and change phrase_inhalt to phrasentext

This commit is contained in:
Paminger
2016-06-29 09:32:51 +02:00
parent 9a44c818ea
commit 48655039ba
4 changed files with 39 additions and 39 deletions
@@ -1,15 +0,0 @@
<?php
class Phrase_inhalt_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_phrase_inhalt';
$this->pk = 'phrase_inhalt_id';
}
}
@@ -0,0 +1,15 @@
<?php
class Phrasentext_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'system.tbl_phrasentext';
$this->pk = 'phrasentext_id';
}
}