<?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 Version20220606091215 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("INSERT INTO `animals` (`path`, `deleted`) VALUES
('cat', 0),
('diet.png', 0),
('dish-washing.png', 0),
('dog.png', 0),
('cow.png', 0),
('deer.png', 0),
('dog.png', 0),
('elephant.png', 0),
('fox.png', 0),
('giraffe.png', 0),
('goat.png', 0),
('gorilla.png', 0),
('hippopotamus.png', 0),
('horse.png', 0),
('husky-dog.png', 0),
('koala.png', 0),
('lion.png', 0),
('monkey.png', 0),
('panda.png', 0),
('pig.png', 0),
('rabbit.png', 0),
('rhino.png', 0),
('snake.png', 0),
('tiger.png', 0),
('walrus.png', 0);
");$this->addSql("INSERT INTO `image` (`id`, `path`, `deleted`) VALUES
(1, 'cat.png', 0),
(2, 'diet.png', 0),
(3, 'dish-washing.png', 0),
(4, 'dog.png', 0),
(5, 'gardening.png', 0),
(6, 'laptop-screen.png', 0),
(7, 'music.png', 0),
(8, 'notification.png', 0),
(9, 'pet-food.png', 0),
(10, 'recycle-bin.png', 0),
(11, 'sport.png', 0),
(12, 'house.png', 0);
");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}