<?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 Version20210818125629 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 "invoices_chats_custom_fields_id_seq" INCREMENT BY 1 MINVALUE 1 START 1');
$this->addSql('CREATE TABLE "invoices_chats_custom_fields" (id INT NOT NULL, chat_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, content TEXT NOT NULL, PRIMARY KEY(id))');
$this->addSql('CREATE INDEX IDX_6DF408F61A9A7125 ON "invoices_chats_custom_fields" (chat_id)');
$this->addSql('ALTER TABLE "invoices_chats_custom_fields" ADD CONSTRAINT FK_6DF408F61A9A7125 FOREIGN KEY (chat_id) REFERENCES "invoices_chats" (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('DROP SEQUENCE "invoices_chats_custom_fields_id_seq" CASCADE');
$this->addSql('DROP TABLE "invoices_chats_custom_fields"');
}
}