Skip to content

Commit

Permalink
on corrige le schéma de compte pour pouvoir importer le journal
Browse files Browse the repository at this point in the history
suite au #1560

le fichier peux bien être uploadé, mais on a cette erreur :

```
Field 'idclef' doesn't have a default value" string(43) "Field 'idclef' doesn't have a default value" string(43) "Field 'idclef' doesn't have a default value"
```

Cela car on a pas de valeur par défaut sur le champ.

Ce champ est tout le temps vide :
```
MariaDB [afup]> select distinct idclef from compta;
+--------+
| idclef |
+--------+
|        |
+--------+
1 row in set (0.05 sec)
```

dans l'idée on pourrait potentiellement le supprimer, mais le plus simple
dans l'immédiat vu qu'on doit importer le journal est de reproduire le comportement que
l'on avait avant en ajoutant une valeur par défaut sur le champ.
  • Loading branch information
agallou committed Dec 1, 2024
1 parent e0ca8d0 commit 0faaef0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions db/migrations/20241201133731_compta_id_clef.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php


use Phinx\Migration\AbstractMigration;

class ComptaIdClef extends AbstractMigration
{
public function change()
{
$this->execute("ALTER TABLE compta MODIFY COLUMN idclef varchar(20) NOT NULL DEFAULT ''");
}
}

0 comments on commit 0faaef0

Please sign in to comment.