<?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 Version20230530075011 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 municipio_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
// $this->addSql('CREATE TABLE municipio (id INT NOT NULL, name VARCHAR(250) DEFAULT NULL, cod VARCHAR(100) NOT NULL, PRIMARY KEY(id))');
$this->addSql('CREATE SEQUENCE conversation_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
$this->addSql('CREATE TABLE conversation (
id INT NOT NULL,
id_project INT NOT NULL,
id_mun INT NOT NULL,
chat TEXT DEFAULT NULL,
who VARCHAR(10) DEFAULT NULL,
scenario INT NULL,
datechat INT NOT NULL,
iselected TEXT NULL,
PRIMARY KEY(id)
)'
);
$this->addSql('CREATE SEQUENCE project_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
$this->addSql('CREATE TABLE project (
id INT NOT NULL,
id_user INT NOT NULL,
id_mun INT NOT NULL,
description TEXT DEFAULT NULL,
name VARCHAR(100) DEFAULT NULL,
date INT NOT NULL,
PRIMARY KEY(id)
)'
);
}
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 municipio_id_seq CASCADE');
// $this->addSql('DROP TABLE municipio');
$this->addSql('DROP SEQUENCE conversation_id_seq CASCADE');
$this->addSql('DROP TABLE conversation');
$this->addSql('DROP SEQUENCE projects_id_seq CASCADE');
$this->addSql('DROP TABLE project');
}
}