Commit 70e151a5 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Abandon vérif schéma.

parent e8e9d066
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -42,13 +42,13 @@ class FaqService implements EntityManagerAwareInterface
     */
    public function checkSchema()
    {
        $tableName = $this->entityManager->getClassMetadata($this->faqEntityClass)->getTableName();
        $q = "select count(*) from ALL_TABLES where UPPER(TABLE_NAME) = UPPER(:tablename)";
        $s = $this->entityManager->getConnection()->executeQuery($q, ['tablename' => $tableName]);
        $count = (int) $s->fetchColumn(0);
        if ($count === 0) {
            throw new LogicException("La table $tableName est introuvable");
        }
//        $tableName = $this->entityManager->getClassMetadata($this->faqEntityClass)->getTableName();
//        $q = "select count(*) from ALL_TABLES where UPPER(TABLE_NAME) = UPPER(:tablename)";
//        $s = $this->entityManager->getConnection()->executeQuery($q, ['tablename' => $tableName]);
//        $count = (int) $s->fetchColumn(0);
//        if ($count === 0) {
//            throw new LogicException("La table $tableName est introuvable");
//        }
    }

    /**