Bonjour à tous,

J'ai un problème de fixture avec la commande
Code : Sélectionner tout - Visualiser dans une fenêtre à part
php bin/console doctrine:fixtures:load

> purging database

In AbstractSQLiteDriver.php line 59:

An exception occurred while executing 'DELETE FROM commit':

SQLSTATE[HY000]: General error: 1 near "commit": syntax error


In PDOConnection.php line 43:

SQLSTATE[HY000]: General error: 1 near "commit": syntax error


In PDOConnection.php line 41:

SQLSTATE[HY000]: General error: 1 near "commit": syntax error
J'ai drop ma base, relancé la migration mais rien y fait.

Mes entités

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
 
namespace App\Entity;
 
use Doctrine\ORM\Mapping as ORM;
 
/**
 * @ORM\Entity(repositoryClass="App\Repository\CommitRepository")
 */
class Commit
{
    /**
     * @ORM\Id()
     * @ORM\GeneratedValue()
     * @ORM\Column(type="integer")
     */
    private $id;
 
    /**
     * @ORM\Column(type="string", length=255)
     */
    private $name;
 
    /**
     * @ORM\Column(type="string", length=255)
     */
    private $description;
 
    /**
     * @ORM\ManyToOne(targetEntity="App\Entity\Branch", inversedBy="commitBranch", cascade={"remove"})
     */
    private $branch;
 
    public function getId(): ?int
    {
        return $this->id;
    }
 
    public function getName(): ?string
    {
        return $this->name;
    }
 
    public function setName(string $name): self
    {
        $this->name = $name;
 
        return $this;
    }
 
    public function getDescription(): ?string
    {
        return $this->description;
    }
 
    public function setDescription(string $description): self
    {
        $this->description = $description;
 
        return $this;
    }
 
    public function getBranch(): ?Branch
    {
        return $this->branch;
    }
 
    public function setBranch(?Branch $branch): self
    {
        $this->branch = $branch;
 
        return $this;
    }
}
Auriez-vous une idée? Merci