migrations/Version20220818115451.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20220818115451 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('CREATE TABLE referentiel_categorie (id INT AUTO_INCREMENT NOT NULL, deleted_at DATETIME DEFAULT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at DATETIME DEFAULT NULL, code VARCHAR(190) NOT NULL, enable TINYINT(1) DEFAULT \'1\', libelle VARCHAR(255) NOT NULL, UNIQUE INDEX UNIQ_57CE194A77153098 (code), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE user (id INT AUTO_INCREMENT NOT NULL, firstname VARCHAR(255) NOT NULL, lastname VARCHAR(255) NOT NULL, username VARCHAR(255) NOT NULL, email VARCHAR(255) NOT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at DATETIME DEFAULT NULL, deleted_at DATETIME DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('ALTER TABLE referentiel_client ADD src_client_id INT DEFAULT NULL, ADD categorie_id INT DEFAULT NULL, ADD interne TINYINT(1) NOT NULL');
  21.         $this->addSql('ALTER TABLE referentiel_client ADD CONSTRAINT FK_BF9976C0BEF019D0 FOREIGN KEY (src_client_id) REFERENCES referentiel_client (id) ON DELETE SET NULL');
  22.         $this->addSql('ALTER TABLE referentiel_client ADD CONSTRAINT FK_BF9976C0BCF5E72D FOREIGN KEY (categorie_id) REFERENCES referentiel_categorie (id) ON DELETE SET NULL');
  23.         $this->addSql('ALTER TABLE transcode_flux ADD comptabilite VARCHAR(255) DEFAULT NULL, ADD commentaire LONGTEXT DEFAULT NULL');
  24.         $this->addSql('CREATE INDEX IDX_BF9976C0BEF019D0 ON referentiel_client (src_client_id)');
  25.         $this->addSql('CREATE INDEX IDX_BF9976C0BCF5E72D ON referentiel_client (categorie_id)');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.         $this->addSql('ALTER TABLE referentiel_client DROP FOREIGN KEY FK_BF9976C0BCF5E72D');
  31.         $this->addSql('DROP TABLE referentiel_categorie');
  32.         $this->addSql('DROP TABLE user');
  33.         $this->addSql('ALTER TABLE referentiel_client DROP FOREIGN KEY FK_BF9976C0BEF019D0');
  34.         $this->addSql('DROP INDEX IDX_BF9976C0BEF019D0 ON referentiel_client');
  35.         $this->addSql('DROP INDEX IDX_BF9976C0BCF5E72D ON referentiel_client');
  36.         $this->addSql('ALTER TABLE referentiel_client DROP src_client_id, DROP categorie_id, DROP interne');
  37.         $this->addSql('ALTER TABLE transcode_flux DROP comptabilite, DROP commentaire');
  38.     }
  39. }