summaryrefslogtreecommitdiffstats
path: root/lib/Migration
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-02-28 09:12:33 -0100
committerMaxence Lange <maxence@artificial-owl.com>2019-02-28 09:12:33 -0100
commitd8824c132445bda2e062241be0ab4f71ef182552 (patch)
treed906dad3739bce4ea51e70afa2dc596073dad45f /lib/Migration
parent9750c8f4b709abf536d3700a8e20d2692d696d62 (diff)
varchar(2000) -> varchar(1000)
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Migration')
-rw-r--r--lib/Migration/Version0002Date20190121153145.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Migration/Version0002Date20190121153145.php b/lib/Migration/Version0002Date20190121153145.php
index c8fcf0a7..76b71532 100644
--- a/lib/Migration/Version0002Date20190121153145.php
+++ b/lib/Migration/Version0002Date20190121153145.php
@@ -83,12 +83,12 @@ class Version0002Date20190121153145 extends SimpleMigrationStep {
$table = $schema->getTable(CoreRequestBuilder::TABLE_SERVER_NOTES);
if (!$table->hasColumn('activity_id')) {
- $table->addColumn('activity_id', Type::STRING, ['notnull' => false, 'length' => 2000]);
+ $table->addColumn('activity_id', Type::STRING, ['notnull' => false, 'length' => 1000]);
}
$table = $schema->getTable(CoreRequestBuilder::TABLE_SERVER_NOTES);
if (!$table->hasColumn('object_id')) {
- $table->addColumn('object_id', Type::STRING, ['notnull' => false, 'length' => 2000]);
+ $table->addColumn('object_id', Type::STRING, ['notnull' => false, 'length' => 1000]);
}
if (!$schema->hasTable(CoreRequestBuilder::TABLE_QUEUE_STREAM)) {