<?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 Version20220510122401 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('ALTER TABLE booking ADD member TINYINT(1) NOT NULL, ADD type_of_sport_equipment INT DEFAULT NULL, ADD comments LONGTEXT DEFAULT NULL, ADD booing_date DATE NOT NULL, ADD is_approved TINYINT(1) NOT NULL, ADD status VARCHAR(255) NOT NULL');
$this->addSql('ALTER TABLE trip CHANGE image_name image_name VARCHAR(255) NOT NULL, CHANGE image_size image_size INT NOT NULL, CHANGE updated_at updated_at DATETIME NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE booking DROP member, DROP type_of_sport_equipment, DROP comments, DROP booing_date, DROP is_approved, DROP status');
$this->addSql('ALTER TABLE trip CHANGE image_name image_name VARCHAR(255) DEFAULT NULL, CHANGE image_size image_size INT DEFAULT NULL, CHANGE updated_at updated_at DATETIME DEFAULT NULL');
}
}