<?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 Version20210603151613 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 offre (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, souscategorie_id INT NOT NULL, description LONGTEXT NOT NULL, created_at DATETIME NOT NULL, publier TINYINT(1) NOT NULL, INDEX IDX_AF86866FA76ED395 (user_id), INDEX IDX_AF86866FA27126E0 (souscategorie_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE offre ADD CONSTRAINT FK_AF86866FA76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE offre ADD CONSTRAINT FK_AF86866FA27126E0 FOREIGN KEY (souscategorie_id) REFERENCES sous_categorie (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE offre');
}
}