From 5353d1b4856e90347b3d34b56f565baa5165f798 Mon Sep 17 00:00:00 2001 From: Michiel Kodde Date: Wed, 10 Apr 2024 10:30:27 +0200 Subject: [PATCH] Add the other_ui field to public_key_credential_sources --- src/Migrations/Version20240410075133.php | 35 ++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/Migrations/Version20240410075133.php diff --git a/src/Migrations/Version20240410075133.php b/src/Migrations/Version20240410075133.php new file mode 100644 index 00000000..fc1abd2c --- /dev/null +++ b/src/Migrations/Version20240410075133.php @@ -0,0 +1,35 @@ +addSql('DROP TABLE migration_versions'); + $this->addSql('ALTER TABLE public_key_credential_sources ADD other_ui LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:array)\''); + $this->addSql('CREATE UNIQUE INDEX UNIQ_1483A5E95E237E06 ON users (name)'); + } + + public function down(Schema $schema): void + { + // this down() migration is auto-generated, please modify it to your needs + $this->addSql('CREATE TABLE migration_versions (version VARCHAR(14) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, executed_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', PRIMARY KEY(version)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = \'\' '); + $this->addSql('ALTER TABLE public_key_credential_sources DROP other_ui'); + $this->addSql('DROP INDEX UNIQ_1483A5E95E237E06 ON users'); + } +}