From 0f291aa147e29b20663cf854cdced8a67caf9d0c Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Sun, 2 Nov 2025 09:58:57 -0600 Subject: [PATCH] fix(migrations): migrations complains about sessions table not existing --- migrations/Version20250831013403.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/Version20250831013403.php b/migrations/Version20250831013403.php index 297730a..e1b37c8 100644 --- a/migrations/Version20250831013403.php +++ b/migrations/Version20250831013403.php @@ -21,7 +21,7 @@ final class Version20250831013403 extends AbstractMigration { // this up() migration is auto-generated, please modify it to your needs $this->addSql(<<<'SQL' - DROP TABLE sessions + DROP TABLE IF EXISTS sessions SQL); $this->addSql(<<<'SQL' ALTER TABLE download CHANGE created_at created_at DATETIME NOT NULL, CHANGE updated_at updated_at DATETIME NOT NULL