From 029c010e2fddbb496bcdfa8727f55d147b70cdf8 Mon Sep 17 00:00:00 2001 From: thrillfall Date: Sun, 22 Aug 2021 23:19:38 +0200 Subject: [PATCH] adapt table column length limit to episode actions like DOWNLOAD --- .../Version0003Date20210822231113.php | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lib/Migration/Version0003Date20210822231113.php diff --git a/lib/Migration/Version0003Date20210822231113.php b/lib/Migration/Version0003Date20210822231113.php new file mode 100644 index 0000000..7b85295 --- /dev/null +++ b/lib/Migration/Version0003Date20210822231113.php @@ -0,0 +1,21 @@ +getTable('gpodder_episode_action'); + $table->changeColumn('action', ['length' => 10]); + + return $schema; + } +}