Skip to content

Commit

Permalink
Merge pull request #1561 from afup/fix_import_compta
Browse files Browse the repository at this point in the history
on corrige le schéma de compte pour pouvoir importer le journal
  • Loading branch information
agallou authored Dec 1, 2024
2 parents 26016be + 0faaef0 commit c5d83ad
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 c5d83ad

Please sign in to comment.