summaryrefslogtreecommitdiffstats
path: root/lib/Migration
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-05-16 16:30:08 +0200
committerJoas Schilling <coding@schilljs.com>2022-06-13 12:52:58 +0200
commitd8fd68d84a17bdfaf7e438d910f78d0a02036f29 (patch)
tree801877c66d25ebccd344b5d7d3ab8d2f3d9559c4 /lib/Migration
parent30c41a8fff35ed77f9a7ced277f64e665a5b03c3 (diff)
Store the summary as well
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Migration')
-rw-r--r--lib/Migration/Version15000Date20220503121308.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Migration/Version15000Date20220503121308.php b/lib/Migration/Version15000Date20220503121308.php
index 1ad03c399..352aa37c4 100644
--- a/lib/Migration/Version15000Date20220503121308.php
+++ b/lib/Migration/Version15000Date20220503121308.php
@@ -63,6 +63,10 @@ class Version15000Date20220503121308 extends SimpleMigrationStep {
'notnull' => false,
'length' => null,
]);
+ $table->addColumn('votes', Types::TEXT, [
+ 'notnull' => false,
+ 'length' => null,
+ ]);
$table->addColumn('actor_type', Types::STRING, [
'notnull' => true,
'length' => 64,