db = get_db($db_id, ENABLE_DB_DEBUG); } public function createTableLang($tb_entity_lang): AppResponse { $result = $this->db->checkTableExist($tb_entity_lang); // check if table exist if(!$result) { $this->db->runQuery("CREATE TABLE `".$tb_entity_lang."` LIKE `".$this->tb_entity_lang_template."` "); // recheck $result = $this->db->checkTableExist($tb_entity_lang); } return new AppResponse($result ? 'ok': 'error'); } }