<?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 Version20210812130111 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 enrollments_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
$this->addSql('CREATE TABLE enrollments (id INT NOT NULL, mooc_session_id INT NOT NULL, date DATE NOT NULL, enrollments INT NOT NULL, enrollments_dashboard INT NOT NULL, certificates INT NOT NULL, PRIMARY KEY(id))');
$this->addSql('CREATE INDEX IDX_CCD8C132AC16130F ON enrollments (mooc_session_id)');
$this->addSql('ALTER TABLE enrollments ADD CONSTRAINT FK_CCD8C132AC16130F FOREIGN KEY (mooc_session_id) REFERENCES mooc_session (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 enrollments_id_seq CASCADE');
$this->addSql('DROP TABLE enrollments');
}
}