<?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 Version20240329092501 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 SEQUENCE user_file_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
$this->addSql('CREATE TABLE user_file (id INT NOT NULL, widget_id UUID NOT NULL, folder VARCHAR(255) DEFAULT NULL, file VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id))');
$this->addSql('CREATE INDEX IDX_F61E7AD9FBE885E2 ON user_file (widget_id)');
$this->addSql('COMMENT ON COLUMN user_file.widget_id IS \'(DC2Type:uuid)\'');
$this->addSql('ALTER TABLE user_file ADD CONSTRAINT FK_F61E7AD9FBE885E2 FOREIGN KEY (widget_id) REFERENCES widget (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
$this->addSql('DROP SEQUENCE user_file_id_seq CASCADE');
$this->addSql('ALTER TABLE user_file DROP CONSTRAINT FK_F61E7AD9FBE885E2');
$this->addSql('DROP TABLE user_file');
}
}