|
@@ -0,0 +1,26 @@
|
|
|
|
+<?php
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+namespace Application\Migrations;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+use Doctrine\DBAL\Migrations\AbstractMigration;
|
|
|
|
+use Doctrine\DBAL\Schema\Schema;
|
|
|
|
+
|
|
|
|
+class Version20200221195520 extends AbstractMigration
|
|
|
|
+{
|
|
|
|
+ /**
|
|
|
|
+ * @param Schema $schema
|
|
|
|
+ */
|
|
|
|
+ public function up(Schema $schema)
|
|
|
|
+ {
|
|
|
|
+ $this->addSql("DELETE FROM action WHERE id in(7,9,10)");
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * @param Schema $schema
|
|
|
|
+ */
|
|
|
|
+ public function down(Schema $schema)
|
|
|
|
+ {
|
|
|
|
+ }
|
|
|
|
+}
|