Guest User

Untitled

a guest
Dec 12th, 2020
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1.  
  2. declare(strict_types=1);
  3.  
  4. namespace MyProject\Migrations;
  5.  
  6. use Doctrine\DBAL\Schema\Schema;
  7. use Doctrine\Migrations\AbstractMigration;
  8.  
  9. /**
  10.  * Auto-generated Migration: Please modify to your needs!
  11.  */
  12. final class Version20201212022801 extends AbstractMigration
  13. {
  14.     public function getDescription() : string
  15.     {
  16.         return '';
  17.     }
  18.  
  19.     public function up(Schema $schema) : void
  20.     {
  21.         // this up() migration is auto-generated, please modify it to your needs
  22.  
  23.     }
  24.  
  25.     public function down(Schema $schema) : void
  26.     {
  27.         // this down() migration is auto-generated, please modify it to your needs
  28.  
  29.     }
  30. }
  31.  
Advertisement
Add Comment
Please, Sign In to add comment