summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-12-10 09:45:57 -0100
committerMaxence Lange <maxence@artificial-owl.com>2018-12-10 09:45:57 -0100
commit728c4c28881c79dc399949ebede935a851964985 (patch)
tree8f044e186dd2b3418aa0da719a18eaa2e427f4b5 /lib
parent73cb46c432a79216ec2265f6bfbc68bb3492dce9 (diff)
let's make the 'activity' field a little bigger too
Diffstat (limited to 'lib')
-rw-r--r--lib/Migration/Version0001Date20181208185242.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Migration/Version0001Date20181208185242.php b/lib/Migration/Version0001Date20181208185242.php
index e6941583..3194f2ee 100644
--- a/lib/Migration/Version0001Date20181208185242.php
+++ b/lib/Migration/Version0001Date20181208185242.php
@@ -75,6 +75,14 @@ class Version0001Date20181208185242 extends SimpleMigrationStep {
]
);
+ $table = $schema->getTable(CoreRequestBuilder::TABLE_REQUEST_QUEUE);
+ $table->changeColumn(
+ 'activity', [
+ 'notnull' => true,
+ 'length' => CoreRequestBuilder::SOURCE_LENGTH,
+ ]
+ );
+
return $schema;
}
}