<?php
declare(strict_types=1);
namespace Application\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20190916115611 extends AbstractMigration
{
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('INSERT INTO security_group (id, name, description, visible_to_client, system_group, created_at, updated_at) VALUES ("ROLE_STAFF_RO", "Staff read-only", "CONCAWE staff member with read-only access.", 0, 1, NOW(), NOW())');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}