aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Migration/Attributes/AddIndex.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Migration/Attributes/AddIndex.php')
-rw-r--r--lib/public/Migration/Attributes/AddIndex.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/public/Migration/Attributes/AddIndex.php b/lib/public/Migration/Attributes/AddIndex.php
index 2a6f0628db1..ee22fe7f128 100644
--- a/lib/public/Migration/Attributes/AddIndex.php
+++ b/lib/public/Migration/Attributes/AddIndex.php
@@ -11,6 +11,8 @@ namespace OCP\Migration\Attributes;
use Attribute;
/**
+ * attribute on index creation
+ *
* @since 30.0.0
*/
#[Attribute(Attribute::IS_REPEATABLE | Attribute::TARGET_CLASS)]
@@ -21,7 +23,6 @@ class AddIndex extends IndexMigrationAttribute {
*/
public function definition(): string {
$type = is_null($this->getType()) ? '' : ' (' . $this->getType()->value . ')';
- $table = empty($this->getTable()) ? '' : ' to table \'' . $this->getTable() . '\'';
- return 'Addition of a new index' . $type . $table;
+ return 'Addition of a new index' . $type . ' to table \'' . $this->getTable() . '\'';
}
}