From 4af08367fc9ba7d3da9a8d569426d8c4751af506 Mon Sep 17 00:00:00 2001 From: thrillfall Date: Thu, 8 Jul 2021 10:14:28 +0200 Subject: [PATCH] remove redundant unique modifier since we already have unique index on that column --- lib/Migration/Version0001Date20210520063113.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Migration/Version0001Date20210520063113.php b/lib/Migration/Version0001Date20210520063113.php index 93ca14d..4ceb902 100644 --- a/lib/Migration/Version0001Date20210520063113.php +++ b/lib/Migration/Version0001Date20210520063113.php @@ -27,7 +27,6 @@ class Version0001Date20210520063113 extends \OCP\Migration\SimpleMigrationStep { $table->addColumn('episode', 'string', [ 'notnull' => true, 'length' => 500, - 'unique' => true, ]); $table->addColumn('action', 'string', [ 'notnull' => true,