Version20200221195520.php 443 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Application\Migrations;
  3. use Doctrine\DBAL\Migrations\AbstractMigration;
  4. use Doctrine\DBAL\Schema\Schema;
  5. class Version20200221195520 extends AbstractMigration
  6. {
  7. /**
  8. * @param Schema $schema
  9. */
  10. public function up(Schema $schema)
  11. {
  12. $this->addSql("DELETE FROM action WHERE id in(7,9,10)");
  13. }
  14. /**
  15. * @param Schema $schema
  16. */
  17. public function down(Schema $schema)
  18. {
  19. }
  20. }