migrations/Version20210719151422.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\Migrations\AbstractMigration;
  5. use Doctrine\DBAL\Schema\Schema;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. class Version20210719151422 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->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql''Migration can only be executed safely on \'mysql\'.');
  19.         $this->addSql('CREATE TABLE promo (id INT AUTO_INCREMENT NOT NULL, environnement VARCHAR(255) DEFAULT NULL, lieu VARCHAR(255) NOT NULL, slug_lieu VARCHAR(100) NOT NULL, nom VARCHAR(255) NOT NULL, region VARCHAR(255) DEFAULT NULL, slug_region VARCHAR(100) NOT NULL, departement VARCHAR(3) NOT NULL, ville VARCHAR(255) DEFAULT NULL, slug_ville VARCHAR(100) NOT NULL, typologie VARCHAR(255) NOT NULL, date_debut DATETIME NOT NULL, date_fin DATETIME NOT NULL, duree INT NOT NULL, id_lieu INT NOT NULL, id_lieu_hebergement INT NOT NULL, id_prestation INT NOT NULL, id_typologie INT NOT NULL, montant_taux_promo DOUBLE  NOT NULL, montant_valeur_promo DOUBLE  NOT NULL, id_prestation_hebergement INT NOT NULL, prix_brut DOUBLE  NOT NULL, prix_total DOUBLE  NOT NULL, status VARCHAR(255) NOT NULL, date_created DATETIME NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB');
  20.     }
  21.      
  22.     public function down(Schema $schema): void
  23.     {
  24.         // this down() migration is auto-generated, please modify it to your needs
  25.         $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql''Migration can only be executed safely on \'mysql\'.');
  26.         $this->addSql('DROP TABLE promos');
  27.     }
  28. }