From f6f8cb43313deb3dfd366bc9e2128d787c833405 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 6 Jul 2023 10:24:28 +0200 Subject: LLM OCP API: Add identifier param Signed-off-by: Marcel Klehr --- core/Migrations/Version28000Date20230616104802.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'core') diff --git a/core/Migrations/Version28000Date20230616104802.php b/core/Migrations/Version28000Date20230616104802.php index ab7347608e2..f13f2ef03a6 100644 --- a/core/Migrations/Version28000Date20230616104802.php +++ b/core/Migrations/Version28000Date20230616104802.php @@ -78,6 +78,11 @@ class Version28000Date20230616104802 extends SimpleMigrationStep { 'length' => 32, 'default' => '', ]); + $table->addColumn('identifier', Types::STRING, [ + 'notnull' => true, + 'length' => 255, + 'default' => '', + ]); $table->addColumn('last_updated', 'integer', [ 'notnull' => false, 'length' => 4, -- cgit v1.2.3