aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/lib/Migration/Version2019Date20190808074233.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/workflowengine/lib/Migration/Version2019Date20190808074233.php')
-rw-r--r--apps/workflowengine/lib/Migration/Version2019Date20190808074233.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/apps/workflowengine/lib/Migration/Version2019Date20190808074233.php b/apps/workflowengine/lib/Migration/Version2019Date20190808074233.php
index 2b9a8aa17cd..ffea3c88d01 100644
--- a/apps/workflowengine/lib/Migration/Version2019Date20190808074233.php
+++ b/apps/workflowengine/lib/Migration/Version2019Date20190808074233.php
@@ -70,12 +70,12 @@ class Version2019Date20190808074233 extends SimpleMigrationStep {
$table->addColumn('operation', Type::TEXT, [
'notnull' => false,
]);
- $this->addEventsColumn($table);
+ $this->addEntityColumns($table);
$table->setPrimaryKey(['id']);
} else {
$table = $schema->getTable('flow_operations');
- if(!$table->hasColumn('events')) {
- $this->addEventsColumn($table);
+ if(!$table->hasColumn('entity')) {
+ $this->addEntityColumns($table);
}
}
@@ -105,7 +105,11 @@ class Version2019Date20190808074233 extends SimpleMigrationStep {
return $schema;
}
- protected function addEventsColumn(Table $table) {
+ protected function addEntityColumns(Table $table) {
+ $table->addColumn('entity', Type::STRING, [
+ 'notnull' => true,
+ 'length' => 256,
+ ]);
$table->addColumn('events', Type::TEXT, [
'notnull' => true,
'default' => '[]',