Files
LaLiga-BackEnd/migrations/Version20240615231250.php
T
Daniel Guzman 887f1b47a5
dyb-tech.com/LaLiga-BackEnd/pipeline/head This commit looks good
Include relationships in login response
2024-06-16 02:35:44 +02:00

32 lines
778 B
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 Version20240615231250 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 user ADD privacy_policy TINYINT(1) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE user DROP privacy_policy');
}
}