migrations/Version20201009143807.php line 1

Open in your IDE?
  1. <?php
  2. // DO NOT DELETE FILE
  3. declare(strict_types=1);
  4. namespace DoctrineMigrations;
  5. use Doctrine\DBAL\Schema\Schema;
  6. use Doctrine\Migrations\AbstractMigration;
  7. final class Version20201009143807 extends AbstractMigration
  8. {
  9.     public function getDescription(): string
  10.     {
  11.         return 'Create sessions table';
  12.     }
  13.     public function up(Schema $schema): void
  14.     {
  15.         $this->addSql('CREATE TABLE `app_sessions` (`sess_id` VARBINARY(128) NOT NULL PRIMARY KEY, `sess_data` BLOB NOT NULL, `sess_lifetime` INTEGER UNSIGNED NOT NULL, `sess_time` INTEGER UNSIGNED NOT NULL) COLLATE utf8mb4_bin, ENGINE = InnoDB');
  16.     }
  17.     public function down(Schema $schema): void
  18.     {
  19.         $this->addSql('DROP TABLE app_sessions');
  20.     }
  21. }