alexdaniels.me/migrations/Version20260522200819.php

34 lines
1 KiB
PHP
Raw Normal View History

2026-06-03 17:18:50 -07:00
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20260522200819 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
2026-06-04 15:17:26 -07:00
$this->addSql('CREATE TABLE page (id INT GENERATED BY DEFAULT AS IDENTITY, title VARCHAR(255), text TEXT, url VARCHAR(255), PRIMARY KEY (id))');
$this->addSql('CREATE TABLE post (id INT GENERATED BY DEFAULT AS IDENTITY, title VARCHAR(255), date TIMESTAMP(0) WITHOUT TIME ZONE , text TEXT, url VARCHAR(255), PRIMARY KEY (id))');
2026-06-03 17:18:50 -07:00
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE page');
$this->addSql('DROP TABLE post');
}
}