class Version20180227152608 extends AbstractMigration
11
{
12
public function up(Schema $schema): void
13
{
14
$this->addSql('ALTER TABLE user ADD role ENUM(\'student\', \'junior\', \'senior\', \'administrator\') DEFAULT \'student\' NOT NULL COMMENT \'(DC2Type:UserRole)\'');
15
$this->addSql('UPDATE user SET role = \'administrator\' WHERE is_administrator = 1');
16
$this->addSql('ALTER TABLE user DROP is_administrator');