fix(migrations): migrations complains about sessions table not existing

This commit is contained in:
Brock H Caldwell
2025-11-02 09:58:57 -06:00
parent c4160081a1
commit 0f291aa147

View File

@@ -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