migrations/2021/08/Version20210804205400.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20210804205400 extends AbstractMigration{public function up(Schema $schema): void{$this->addSql('DROP TABLE document_dropbox_cursor');}public function down(Schema $schema): void{$this->addSql('CREATE TABLE document_dropbox_cursor (id BINARY(16) NOT NULL COMMENT \'(DC2Type:document_dropbox_cursor_id)\', processed_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', db_cursor LONGTEXT NOT NULL, INDEX processed_at_idx (processed_at), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB');}}