remove incorrect timezone call

This commit is contained in:
Alex 2026-06-04 15:20:30 -07:00
parent 2eb2ea81f3
commit 1957778dff
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ final class Version20260522200819 extends AbstractMigration
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE TABLE page (id INT AUTO_INCREMENT, title VARCHAR(255), text TEXT, url VARCHAR(255), PRIMARY KEY (id))');
$this->addSql('CREATE TABLE post (id INT AUTO_INCREMENT, title VARCHAR(255), date TIMESTAMP(0) WITHOUT TIME ZONE , text TEXT, url VARCHAR(255), PRIMARY KEY (id))');
$this->addSql('CREATE TABLE post (id INT AUTO_INCREMENT, title VARCHAR(255), date TIMESTAMP(0) , text TEXT, url VARCHAR(255), PRIMARY KEY (id))');
}
public function down(Schema $schema): void