<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Migration add credit for sponsor
*/
final class Version20240829112320 extends AbstractMigration
{
public function getDescription(): string
{
return 'Migration add credit for sponsor';
}
public function up(Schema $schema): void
{
$this->addSql("
ALTER TABLE `sponsor`
ADD `credit` TINYINT(1) DEFAULT 0 NOT NULL,
ADD `credit_limit` DOUBLE PRECISION DEFAULT '0' NOT NULL;
");
}
public function down(Schema $schema): void
{
$this->addSql('
ALTER TABLE `sponsor`
DROP `credit`,
DROP `credit_limit`;
');
}
}