From 08a3554b8353cec8e53fc41315d901f8fcc3b296 Mon Sep 17 00:00:00 2001 From: Marcel Diegelmann Date: Fri, 10 Oct 2025 15:01:53 +0200 Subject: [PATCH] =?UTF-8?q?F=C3=BCge=20eindeutigen=20Index=20zu=20parts.ip?= =?UTF-8?q?n=20wieder=20hinzu.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- migrations/Version20251010125849.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 migrations/Version20251010125849.php diff --git a/migrations/Version20251010125849.php b/migrations/Version20251010125849.php new file mode 100644 index 00000000..873bf212 --- /dev/null +++ b/migrations/Version20251010125849.php @@ -0,0 +1,26 @@ +addSql('CREATE UNIQUE INDEX UNIQ_6940A7FE3D721C14 ON parts (ipn)'); + } + + public function down(Schema $schema): void + { + $this->addSql('DROP INDEX UNIQ_6940A7FE3D721C14 ON `parts`'); + } +}