<?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 Version20220704110502 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 printer_user_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
$this->addSql('CREATE TABLE printer_user (id INT NOT NULL, owner_id INT DEFAULT NULL, printer_id INT DEFAULT NULL, name VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id))');
$this->addSql('CREATE INDEX IDX_E168D8887E3C61F9 ON printer_user (owner_id)');
$this->addSql('CREATE INDEX IDX_E168D88846EC494A ON printer_user (printer_id)');
$this->addSql('ALTER TABLE printer_user ADD CONSTRAINT FK_E168D8887E3C61F9 FOREIGN KEY (owner_id) REFERENCES "user" (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
$this->addSql('ALTER TABLE printer_user ADD CONSTRAINT FK_E168D88846EC494A FOREIGN KEY (printer_id) REFERENCES printer (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 printer_user_id_seq CASCADE');
$this->addSql('DROP TABLE printer_user');
}
}