From d538865832973af0944ce7eff7fc21154b2bd732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nu=C5=A1a=20Puk=C5=A1i=C4=8D?= Date: Thu, 4 Dec 2025 15:53:11 +0100 Subject: [PATCH] Migration --- migrations/Version20251204102016.php | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 migrations/Version20251204102016.php diff --git a/migrations/Version20251204102016.php b/migrations/Version20251204102016.php new file mode 100644 index 0000000..98ae838 --- /dev/null +++ b/migrations/Version20251204102016.php @@ -0,0 +1,31 @@ +addSql('ALTER TABLE article ADD processed_html TEXT DEFAULT NULL'); + } + + public function down(Schema $schema): void + { + // this down() migration is auto-generated, please modify it to your needs + $this->addSql('ALTER TABLE article DROP processed_html'); + } +}