4a77449a41
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #203 | Réceptions — Parcours de pesée multi-étapes | ## Description de la PR [#203] Réceptions — Parcours de pesée multi-étapes ## Modification du .env ## Check list - [x] Pas de régression - [x] TU/TI/TF rédigée - [x] TU/TI/TF OK - [x] CHANGELOG modifié Reviewed-on: https://gitea.malio.fr/MALIO-DEV/Ferme/pulls/3 Reviewed-by: THOLOT DECHENE Matthieu <matthieu@yuno.malio.fr> Co-authored-by: AUTIN Tristan <tristan@yuno.malio.fr> Co-committed-by: AUTIN Tristan <tristan@yuno.malio.fr>
43 lines
1.8 KiB
PHP
43 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DoctrineMigrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
final class Version20260112000600 extends AbstractMigration
|
|
{
|
|
public function getDescription(): string
|
|
{
|
|
return 'Update weight table to store single weighings with type';
|
|
}
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
$this->addSql('DROP INDEX UNIQ_7B4E3B2304A72F3F');
|
|
$this->addSql('ALTER TABLE weight DROP gross_weight');
|
|
$this->addSql('ALTER TABLE weight DROP tare_weight');
|
|
$this->addSql('ALTER TABLE weight DROP gross_weighed_at');
|
|
$this->addSql('ALTER TABLE weight DROP tare_weighed_at');
|
|
$this->addSql('ALTER TABLE weight ADD dsd INT DEFAULT NULL');
|
|
$this->addSql('ALTER TABLE weight ADD weight INT DEFAULT NULL');
|
|
$this->addSql('ALTER TABLE weight ADD weighed_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL');
|
|
$this->addSql('ALTER TABLE weight ADD type VARCHAR(10) DEFAULT \'gross\' NOT NULL');
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
$this->addSql('ALTER TABLE weight DROP dsd');
|
|
$this->addSql('ALTER TABLE weight DROP weight');
|
|
$this->addSql('ALTER TABLE weight DROP weighed_at');
|
|
$this->addSql('ALTER TABLE weight DROP type');
|
|
$this->addSql('ALTER TABLE weight ADD gross_weight INT DEFAULT NULL');
|
|
$this->addSql('ALTER TABLE weight ADD tare_weight INT DEFAULT NULL');
|
|
$this->addSql('ALTER TABLE weight ADD gross_weighed_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL');
|
|
$this->addSql('ALTER TABLE weight ADD tare_weighed_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL');
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_7B4E3B2304A72F3F ON weight (reception_id)');
|
|
}
|
|
}
|