feat(piece) : add quantity field to MachinePieceLink entity + migration

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Matthieu
2026-03-12 12:01:42 +01:00
parent 233ee3faf3
commit c74bdedf9b
2 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20260309150000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add quantity column to machine_piece_links table';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE machine_piece_links ADD COLUMN IF NOT EXISTS quantity INTEGER NOT NULL DEFAULT 1');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE machine_piece_links DROP COLUMN IF EXISTS quantity');
}
}