<?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 Version20220228101418 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 spent (id INT AUTO_INCREMENT NOT NULL, stay_id INT DEFAULT NULL, date DATE NOT NULL, spent NUMERIC(10, 2) NOT NULL, currency VARCHAR(255) DEFAULT NULL, transaction_code VARCHAR(255) DEFAULT NULL, transaction_description VARCHAR(255) DEFAULT NULL, transaction_id VARCHAR(255) DEFAULT NULL, INDEX IDX_F1653759FB3AF7D6 (stay_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE spent ADD CONSTRAINT FK_F1653759FB3AF7D6 FOREIGN KEY (stay_id) REFERENCES stay (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE spent');
}
}