<?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 Version20220113001352 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("DELETE FROM music_style");
$this->addSql("INSERT INTO `music_style` (`id`, `name`) VALUES
(1, 'Rock'),
(2, 'Jazz'),
(3, 'Funk'),
(4, 'Metal'),
(5, 'Pop'),
(6, 'R\'nB'),
(7, 'Electro'),
(8, 'Reggae'),
(9, 'Blues'),
(10, 'Classique'),
(11, 'Latino'),
(13, 'Dub'),
(15, 'Hardcore'),
(16, 'Jazz Manouche'),
(17, 'Rock psychédélique'),
(19, 'Soul'),
(20, 'Disco'),
(21, 'Rap'),
(22, 'Acoustique'),
(23, 'Hip Hop'),
(24, 'Punk rock'),
(25, 'Black Métal'),
(26, 'Country'),
(27, 'Folk'),
(28, 'Heavy Metal'),
(29, 'Salsa'),
(30, 'Posé'),
(31, 'House'),
(32, 'Techno'),
(33, 'Hardtek'),
(35, 'Variété')
");
}
public function down(Schema $schema) : void
{
}
}