40 lines
1.7 KiB
PHP
40 lines
1.7 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace DoctrineMigrations;
|
||
|
|
|
||
|
|
use Doctrine\DBAL\Schema\Schema;
|
||
|
|
use Doctrine\Migrations\AbstractMigration;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Auto-generated Migration: Please modify to your needs!
|
||
|
|
*/
|
||
|
|
final class Version20260121135907 extends AbstractMigration
|
||
|
|
{
|
||
|
|
public function getDescription(): string
|
||
|
|
{
|
||
|
|
return '';
|
||
|
|
}
|
||
|
|
|
||
|
|
public function up(Schema $schema): void
|
||
|
|
{
|
||
|
|
// this up() migration is auto-generated, please modify it to your needs
|
||
|
|
$this->addSql('CREATE TABLE contrats (id SERIAL NOT NULL, customer_id INT DEFAULT NULL, devis_id INT DEFAULT NULL, num_reservation VARCHAR(255) NOT NULL, create_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL, PRIMARY KEY(id))');
|
||
|
|
$this->addSql('CREATE INDEX IDX_7268396C9395C3F3 ON contrats (customer_id)');
|
||
|
|
$this->addSql('CREATE UNIQUE INDEX UNIQ_7268396C41DEFADA ON contrats (devis_id)');
|
||
|
|
$this->addSql('COMMENT ON COLUMN contrats.create_at IS \'(DC2Type:datetime_immutable)\'');
|
||
|
|
$this->addSql('ALTER TABLE contrats ADD CONSTRAINT FK_7268396C9395C3F3 FOREIGN KEY (customer_id) REFERENCES customer (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
|
||
|
|
$this->addSql('ALTER TABLE contrats ADD CONSTRAINT FK_7268396C41DEFADA FOREIGN KEY (devis_id) REFERENCES devis (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
|
||
|
|
}
|
||
|
|
|
||
|
|
public function down(Schema $schema): void
|
||
|
|
{
|
||
|
|
// this down() migration is auto-generated, please modify it to your needs
|
||
|
|
$this->addSql('CREATE SCHEMA public');
|
||
|
|
$this->addSql('ALTER TABLE contrats DROP CONSTRAINT FK_7268396C9395C3F3');
|
||
|
|
$this->addSql('ALTER TABLE contrats DROP CONSTRAINT FK_7268396C41DEFADA');
|
||
|
|
$this->addSql('DROP TABLE contrats');
|
||
|
|
}
|
||
|
|
}
|